我定义了这个类:
类myClass { string Key {get; set;} }
和ItemsControl
<ItemsControl Name="itemsControl" >
<ItemsControl.Items>
<RadioButton Content="{Binding Key}" />
</ItemsControl.Items>
</ItemsControl>
现在,我尝试在代码中调用绑定(itemsControl.ItemsSource或itemsControl.DataContext),但它不起作用(我试图将myClass的一些列表绑定到itemsControl)
答案 0 :(得分:2)
您需要将单选按钮放在itemTemplate标记内而不是items标记
尝试<ItemsControl.ItemTemplate/> <DataTemplate ...