|
|
@ -39,6 +39,7 @@ namespace Avalonia.Win32.Automation |
|
|
{ AutomationElementIdentifiers.HelpTextProperty, UiaPropertyId.HelpText }, |
|
|
{ AutomationElementIdentifiers.HelpTextProperty, UiaPropertyId.HelpText }, |
|
|
{ AutomationElementIdentifiers.LandmarkTypeProperty, UiaPropertyId.LandmarkType }, |
|
|
{ AutomationElementIdentifiers.LandmarkTypeProperty, UiaPropertyId.LandmarkType }, |
|
|
{ AutomationElementIdentifiers.HeadingLevelProperty, UiaPropertyId.HeadingLevel }, |
|
|
{ AutomationElementIdentifiers.HeadingLevelProperty, UiaPropertyId.HeadingLevel }, |
|
|
|
|
|
{ AutomationElementIdentifiers.ItemStatusProperty, UiaPropertyId.ItemStatus }, |
|
|
{ ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, UiaPropertyId.ExpandCollapseExpandCollapseState }, |
|
|
{ ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, UiaPropertyId.ExpandCollapseExpandCollapseState }, |
|
|
{ RangeValuePatternIdentifiers.IsReadOnlyProperty, UiaPropertyId.RangeValueIsReadOnly}, |
|
|
{ RangeValuePatternIdentifiers.IsReadOnlyProperty, UiaPropertyId.RangeValueIsReadOnly}, |
|
|
{ RangeValuePatternIdentifiers.MaximumProperty, UiaPropertyId.RangeValueMaximum }, |
|
|
{ RangeValuePatternIdentifiers.MaximumProperty, UiaPropertyId.RangeValueMaximum }, |
|
|
@ -135,6 +136,8 @@ namespace Avalonia.Win32.Automation |
|
|
UiaPropertyId.IsEnabled => InvokeSync(() => Peer.IsEnabled()), |
|
|
UiaPropertyId.IsEnabled => InvokeSync(() => Peer.IsEnabled()), |
|
|
UiaPropertyId.IsKeyboardFocusable => InvokeSync(() => Peer.IsKeyboardFocusable()), |
|
|
UiaPropertyId.IsKeyboardFocusable => InvokeSync(() => Peer.IsKeyboardFocusable()), |
|
|
UiaPropertyId.IsOffscreen => InvokeSync(() => Peer.IsOffscreen()), |
|
|
UiaPropertyId.IsOffscreen => InvokeSync(() => Peer.IsOffscreen()), |
|
|
|
|
|
UiaPropertyId.ItemType => InvokeSync(() => Peer.GetItemType()), |
|
|
|
|
|
UiaPropertyId.ItemStatus => InvokeSync(() => Peer.GetItemStatus()), |
|
|
UiaPropertyId.LocalizedControlType => InvokeSync(() => Peer.GetLocalizedControlType()), |
|
|
UiaPropertyId.LocalizedControlType => InvokeSync(() => Peer.GetLocalizedControlType()), |
|
|
UiaPropertyId.Name => InvokeSync(() => Peer.GetName()), |
|
|
UiaPropertyId.Name => InvokeSync(() => Peer.GetName()), |
|
|
UiaPropertyId.HelpText => InvokeSync(() => Peer.GetHelpText()), |
|
|
UiaPropertyId.HelpText => InvokeSync(() => Peer.GetHelpText()), |
|
|
|