我在 xaml 中有这样的东西:
<Button Content="{Binding MyStopwatch.IsRunning,
Converter={StaticResource BoolToStr}}"/>
我需要显示开始,何时IsRunning
为假,停止,何时IsRunning
为真。我对转换器或绑定本身没有问题。
我有刷新IsRunning
属性的问题。当程序运行时IsRunning
属性更改- 它不会更改开始/停止文本。
我知道如何INotifyPropertyChange
在我自己的属性上实现。但我不知道如何实现(类似的)属性更改IsRunning