gpt4 book ai didi

silverlight - 如何在 xaml 中设置 silverlight comboboxitem 值

转载 作者:行者123 更新时间:2023-12-04 02:46:11 28 4
gpt4 key购买 nike

我为组合框创建了一个数据模板,如下所示:

<DataTemplate x:Key="AircraftTypeTemplate">
<StackPanel Orientation="Horizontal" Width="340">
<ComboBox>
<ComboBoxItem>CJ1</ComboBoxItem>
<ComboBoxItem>CJ3</ComboBoxItem>
<ComboBoxItem>Bravo</ComboBoxItem>
<ComboBoxItem>Excel</ComboBoxItem>
<ComboBoxItem>Sovereign</ComboBoxItem>
</ComboBox>
</StackPanel>
</DataTemplate>

它呈现得很好,但我希望能够将一个值与每个项目相关联,而不必将其绑定(bind)到某些数据上下文。例如,我希望 CJ1 组合框的值为 5。如何在 XAML 中设置它们?

像:
<ComboBoxItem Value="5">CJ1</ComboBoxItem>

谢谢!

最佳答案

您可以设置Name属性是任意字符串并使用它。为了获得更大的灵 active ,您可以使用 Tag属性,根据 MSDN:

Gets or sets an arbitrary object value that can be used to store custom information about this object.



您可以阅读有关 Tag 的更多信息 here .我会说 Tag可能比弯曲更好 Name根据您的意愿,您可以在 Tag 中插入一根绳子就像 Name 一样简单.

关于silverlight - 如何在 xaml 中设置 silverlight comboboxitem 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7920691/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com