gpt4 book ai didi

wpf - 绑定(bind)到设置中定义的值

转载 作者:行者123 更新时间:2023-12-03 05:22:29 25 4
gpt4 key购买 nike

在 WPF 中,我可以使用与“设置”中定义的值进行绑定(bind)吗?如果可能,请提供示例。

最佳答案

首先,您需要添加一个自定义 XML 命名空间,该命名空间将设计定义设置的命名空间:

xmlns:properties="clr-namespace:TestSettings.Properties"

然后,在您的 XAML 文件中,使用以下语法访问默认设置实例:

{x:Static properties:Settings.Default}

所以这是最终的结果代码:

<ListBox x:Name="lb"
ItemsSource="{Binding Source={x:Static properties:Settings.Default},
Path=Names}" />

来源:WPF - How to bind a control to a property defined in the Settings?

<小时/>

注意:正如 @Daniel 和 @nabulke 所指出的,不要忘记将设置文件的 访问修饰符 设置为 Public范围用户

关于wpf - 绑定(bind)到设置中定义的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/845030/

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