<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组合框的值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)