2011-05-08 55 views
0

我定義這個類:失敗ItemsControl的結合

MyClass類 { 字符串鍵{獲得;設置;} }

和ItemsControl的

<ItemsControl Name="itemsControl" > 
    <ItemsControl.Items>    
      <RadioButton Content="{Binding Key}" />  
    </ItemsControl.Items> 
</ItemsControl> 

現在,我打電話代碼中的綁定(itemsControl.ItemsSource或itemsControl.DataContext),但它不工作(我試圖綁定一些myClass列表到itemsControl)

回答

2

你需要把單選按鈕的ItemTemplate標籤內沒有物品標籤

嘗試<ItemsControl.ItemTemplate/> <DataTemplate ...