Kalai
Kalai

Reputation: 319

Difference between CodedUI and UISpy

What is the difference between CodedUI and UISpy? Does both use same mechanism? I need to implement support for UISPY in my own custom grid control[WinForms] to recognize each cell as like in the MS DataGridView. currently UISPY recognizes my entire control but not individual cell.

Any help would be highly appreciated

Upvotes: 0

Views: 769

Answers (2)

JL.
JL.

Reputation: 81262

The UI Spy tool is obsolete and no longer available. Developers should use other tools such as Inspect.exe that are available in the Windows Software Development Kit (SDK).

Upvotes: 0

Richard Banks
Richard Banks

Reputation: 12546

I'm not sure how UISpy works but CodedUI uses the UI Automation framework to access the UI components in an app.

Regardless, you might want to look at using something like HawkEye or WinForms Spy as a starting point for doing what you need.

Upvotes: 0

Related Questions