我定義了包含單選按鈕的ItemControl。如何取消選中ItemsControl中出現的單選按鈕?
<ItemsControl x:Name="items" ItemsSource="{Binding Path=myItemList}" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<RadioButton Content="{Binding Path=Key}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
現在,我想取消檢查ItemsControl包含的所有radioButton。 我想寫一些方法,將取消所有這些radioButton檢查。 我該怎麼做?
感謝您的幫助......
的myItemList是包含對象,該對象的屬性之一是密鑰列表 - 所以我不能讓上myItemList運行是未覈對 – Yanshof
請參閱我的答案編輯 - 我添加了一個小樣本。 – MichaelS
正如我所說的myItemList memberts包含blaItem.Key但這不是bool的對象(!)==>之前...這是字符串,它是有約束力的單選按鈕的單選按鈕的內容(這意味着將出現串在單選按鈕) – Yanshof