Reputation: 3746
Can anyone give an example as to how AutomationProperties.LiveSettings work?
I have been working on a WPF application and I want a Text Block to be made live. In Html its easy to do, but using an aria-live tag, however I have been struggling to do the same in WPF.
Upvotes: 1
Views: 839
Reputation: 3746
AutomationProperties.LiveSetting cannot be used in WPF.
It can be used with XAML only for developing windows store app or mobile app. In case of a store/phone app, a different library of AutomationProperties is used which supports the usage of LiveSettings. In case of WPF app, there is a different library of AutomationProperties which doesn't have the LiveSettings property.
Upvotes: 1