如何在xaml中设置silverlight组合框的值

如何在xaml中设置silverlight组合框的值,第1张

概述我为组合框创建了一个datatemplate,如下所示: <DataTemplate x:Key="AircraftTypeTemplate"> <StackPanel Orientation="Horizontal" Width="340"> <ComboBox> <ComboBoxItem>CJ1</ComboBoxItem> 我为组合框创建了一个datatemplate,如下所示:

<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>

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

喜欢:

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

谢谢!

解决方法 您可以将name属性设置为任意字符串并使用它.为了更加灵活,您可以使用Tag属性,根据MSDN:

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

您可以阅读有关Tag here的更多信息.我会说Tag可能更好,而不是将name折叠到您的遗嘱,并且您可以像使用name一样轻松地将字符串粘贴到Tag中.

总结

以上是内存溢出为你收集整理的如何在xaml中设置silverlight组合框的值全部内容,希望文章能够帮你解决如何在xaml中设置silverlight组合框的值所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1006046.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存