0
我有一些單選按鈕。第一個是默認選中的。單選按鈕選擇默認在禁用後不工作
我需要在處理某些數據時禁用它們。
問題:重新啓用它們時,第一個不再被選中,即。未選擇!
<RadioButton GroupName="ShowSelector" Content="For Selected"
IsChecked="{Binding Path=ShowForSelected, Mode=TwoWay, FallbackValue=True}"
IsEnabled="{Binding NotUnderProcessing}"/>
<RadioButton GroupName="ShowSelector" Content="For All"
IsEnabled="{Binding NotUnderProcessing}"/>
我測試了你的建議,沒有解決問題。對不起,我的問題似乎並不明確。它不是關於未綁定/調用的NotUnderProcessing屬性,它關於消失的按鈕默認檢查。我已經更新了問題和代碼,希望現在更清楚。 – goul
@goul:你在實現INotifyPropertyChanged接口嗎? –
是的。當我手動設置屬性時,它在調試中工作正常 – goul