1

我有一个 WinForms 应用程序,我似乎无法ToolStripStatusLabel通过 UIAutomation 访问 a 的文本。微软暗示StatusStrips (以及可能其中的项目)的支持是有限的,但这似乎是一个足够基本的用例,它应该可以工作。

该控件显示ControlType.Edit在 UISpy 中,并且似乎只是一个只读文本框,但其值始终与其名称相同,而不是其文本。

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 以某种方式获得该价值。

4

3 回答 3

1

AccessibleName除了.TextToolStripStatusLabel控件上设置属性。它适用于我在类似的场景中使用 White:

statusLabel.Text = statusLabel.AccessibleName = "New status value";

于 2013-03-14T03:46:17.173 回答
0

我不得不通过使用两个具有不同文本的单独标签并显示和隐藏适当的标签来解决此问题。这对于我的目的来说已经足够了(使用 White 进行测试),但我很惊讶 UIAutomation 没有显示文本值——这基本上意味着屏幕阅读器无法访问 WinForms 应用程序中状态栏中的所有文本。

于 2009-06-26T08:51:30.450 回答
0

检索与您描述的标签类似的文本时,我从来没有遇到过问题。事实上,AutomationId在我的应用程序中甚至是相同的。ControlType显示的事实ControlType.Edit具有误导性。例如以下将起作用

statusText = (string)automationElement.GetCurrentPropertyValue(ValuePattern.ValueProperty);

使用FindautomationElement方法对ControlType.EditAutomationId进行定位"StatusBar.Pane0"

于 2009-08-18T03:09:05.187 回答