将 WPF 组合框的所选项目设置为用户设置
我有一个组合框,其中项目源设置为“类别”的集合。 SelectedValuePath 是 CategoryID 属性。我有一个用户设置“DefaultCategory”,它是一个整数,应设置 CategoryID。我希望组合框可以选择 DefaultCategory 用户设置。
xmlns:my="clr-namespace:MyApp"
<ComboBox x:Name="cmbCategory" DisplayMemberPath="Category" SelectedValuePath="CategoryID" SelectedValue="{Binding Source={x:Static my:MySettings.Default}, Path=DefaultCategory, Mode=TwoWay}"/>
I have a combo box with an item source set as a collection of 'Category'. The SelectedValuePath is the CategoryID property. I have a user setting 'DefaultCategory' that is an integer of which should set the CategoryID. I want the combo box to have a selection of the DefaultCategory user setting.
xmlns:my="clr-namespace:MyApp"
<ComboBox x:Name="cmbCategory" DisplayMemberPath="Category" SelectedValuePath="CategoryID" SelectedValue="{Binding Source={x:Static my:MySettings.Default}, Path=DefaultCategory, Mode=TwoWay}"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个名为 DefaultCategory_Selected 的附加应用程序设置,其类型为 int,范围为 User,然后绑定 SelectedIndex属性到设置。
You could create an additional application setting called DefaultCategory_Selected of type int and scope of User, and then binding the SelectedIndex property to the setting.