1
我想問你是否可以在ListBoxItem
提供的字符串中出現和的值存儲在DB中。 這的確是可能的:帶有值的ListBoxItem?
ItemSource={Binding MyEnumColleciton}
或
ItemSource={DynamicResource MyCollection}
等。
,但如果你像我有大約100列表框..我不希望有這麼多不同的枚舉和其他ItemSource集合,我想直接寫入ListBoxItem。
這就是我說的:
<ListBox SelectedItem="{Binding Path=MyPath1}" Style="{StaticResource RadioButtonList}">
<ListBoxItem Content="Text1" />
<ListBoxItem Content="Text2" />
</ListBox>
<ListBox SelectedItem="{Binding Path=MyPath2}" Style="{StaticResource RadioButtonList}">
<ListBoxItem Content="Text3" />
<ListBoxItem Content="Text4" />
</ListBox>
<ListBox SelectedItem="{Binding Path=MyPath3}" Style="{StaticResource RadioButtonList}">
<ListBoxItem Content="Text5" />
<ListBoxItem Content="Text6" />
</ListBox>
... 100x
這不是直接我想要的..但是.. 您的意見? – 2010-08-05 14:09:02