Bug 598788 - Window controltype: IsEnabledProperty property-changed event doesn't work
Summary: Window controltype: IsEnabledProperty property-changed event doesn't work
Status: NEW
Alias: None
Product: UI Automation
Classification: Mono
Component: Winforms - UIA (show other bugs)
Version: Release 2.0
Hardware: Other Other
: P2 - High : Normal
Target Milestone: ---
Assignee: E-mail List
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-04-22 07:56 UTC by calen chen
Modified: 2010-08-25 09:06 UTC (History)
0 users

See Also:
Found By: ---
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments
script for checking IsEnabledProperty (1.16 KB, text/x-python)
2010-04-22 08:03 UTC, calen chen
Details

Note You need to log in before you can comment on or make changes to this bug.
Description calen chen 2010-04-22 07:56:49 UTC
PROBLEM:

The window form is not active, but its IsEnabled value still shows 'True' via UIAClientAPI

REPRO:

1. Run uia2atk/test/samples/winforms/button_label_linklabel.py, click 'button1', message window appears and is active
2. Run the attachment script to print both windows' IsEnabled value

RESULTS:

Both windows are showing 'True' of IsEnabled value:

Main Window Button_Label_LinkLabel controls's IsEnabled value: True 
Window message's IsEnabled value: True

EXPECTED RESULTS:

Main Window Button_Label_LinkLabel controls's IsEnabled value: False 
Window message's IsEnabled value: True
Comment 1 calen chen 2010-04-22 08:03:46 UTC
Created attachment 356148 [details]
script for checking IsEnabledProperty