获取控件中的数据绑定对象

发布于 2024-07-22 05:34:10 字数 126 浏览 2 评论 0原文

我想创建一个枚举组合框,其中弹出窗口将显示控件绑定对象的枚举值。 不知何故,我无法在运行时获取绑定对象属性。 数据绑定将使我到达绑定对象。 但该属性及其类型对我来说是不可见的,或者我只是还没有找到它......任何人都可以帮助我吗?

I want to create an enumcombobox where the popup will show the enumvalues of the controls' binding object. Somehow I cannot get the binding object property at runtime. Databindings wil get me to the binding object. But the property and its type is invisable for me, or I just didn't find it yet... Can anyone help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拥抱没勇气 2024-07-29 05:34:10

您必须使用 DataObjectProvider。 在您的资源中,输入类似:

<ObjectDataProvider MethodName="GetValues" ObjectType="{x:Type sys:Enum}" x:Key="odpEnum">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="yourEnumNameHere"/>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>

在您的组合中,输入:

<ComboBox ItemsSource="{Binding Source={StaticResource odpEnum}}"/>

这应该用您的枚举填充您的组合。

You have to use a DataObjectProvider. In your resources, put something like :

<ObjectDataProvider MethodName="GetValues" ObjectType="{x:Type sys:Enum}" x:Key="odpEnum">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="yourEnumNameHere"/>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>

In your combo, put :

<ComboBox ItemsSource="{Binding Source={StaticResource odpEnum}}"/>

This should fill your combo with your enum.

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