将 WPF 组合框的所选项目设置为用户设置

发布于 2024-10-16 08:18:27 字数 404 浏览 2 评论 0原文

我有一个组合框,其中项目源设置为“类别”的集合。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

和影子一齐双人舞 2024-10-23 08:18:27

您可以创建一个名为 DefaultCategory_Selected 的附加应用程序设置,其类型为 int,范围为 User,然后绑定 SelectedIndex属性到设置。

<ComboBox SelectedIndex="{Binding Path=DefaultCategory_Selected, Mode=TwoWay}" ... />

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.

<ComboBox SelectedIndex="{Binding Path=DefaultCategory_Selected, Mode=TwoWay}" ... />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文