我有一个WinForms应用程序,我似乎无法通过UIAutomation访问ToolStripStatusLabel
的文本。微软implies表示对StatusStrip
的支持(可能是其中的项目)是有限的,但这似乎是一个基本的用例,它应该可以工作。
控件在UISpy中显示为ControlType.Edit
,并且看起来只是只读文本框,但其值始终与其名称相同,而不是其文本。
UISpy中的属性如下:
AutomationElement
General Accessibility
AccessKey: ""
AcceleratorKey: ""
IsKeyboardFocusable: "False"
LabeledBy: "(null)"
HelpText: ""
State
IsEnabled: "True"
HasKeyboardFocus: "False"
Identification
ClassName: ""
ControlType: "ControlType.Edit"
Culture: "(null)"
AutomationId: "StatusBar.Pane0"
LocalizedControlType: "edit"
Name: "My Label"
ProcessId: "3972 (*****)"
RuntimeId: "42 134002 0"
IsPassword: "False"
IsControlElement: "True"
IsContentElement: "True"
Visibility
BoundingRectangle: "(9, 273, 79, 17)"
ClickablePoint: "48,281"
IsOffscreen: "False"
ControlPatterns
GridItem
Row: "0"
Column: "0"
RowSpan: "1"
ColumnSpan: "1"
ContainingGrid: ""status bar" "statusStrip""
Value
Value: "My Label"
IsReadOnly: "True"
基本上,我希望有一些方法可以去myLabel.Text = "something"
,并能通过UIAutomation以某种方式获得该值。
答案 0 :(得分:1)
在AccessibleName
控件上添加.Text
以外的ToolStripStatusLabel
属性。在类似的情况下,它适用于我使用White:
statusLabel.Text = statusLabel.AccessibleName = "New status value";
答案 1 :(得分:0)
我必须通过使用不同文本的两个单独标签,并显示和隐藏适当的标签来解决这个问题。这对我的目的来说已经足够了(用White测试),但是我很惊讶UIAutomation没有显示文本值 - 它基本上意味着屏幕阅读器无法访问WinForms应用程序状态栏中的所有文本。
答案 2 :(得分:0)
我从来没有遇到过类似于你所描述的标签文本的问题。实际上AutomationId
在我的应用程序中甚至是相同的。 ControlType
显示为ControlType.Edit
这一事实具有误导性。例如以下将起作用
statusText = (string)automationElement.GetCurrentPropertyValue(ValuePattern.ValueProperty);
使用automationElement
ControlType.Edit
AutomationId
的{{1}}使用查找方法定位"StatusBar.Pane0"
。