获取控件中的数据绑定对象
我想创建一个枚举组合框,其中弹出窗口将显示控件绑定对象的枚举值。 不知何故,我无法在运行时获取绑定对象属性。 数据绑定将使我到达绑定对象。 但该属性及其类型对我来说是不可见的,或者我只是还没有找到它......任何人都可以帮助我吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 DataObjectProvider。 在您的资源中,输入类似:
在您的组合中,输入:
这应该用您的枚举填充您的组合。
You have to use a DataObjectProvider. In your resources, put something like :
In your combo, put :
This should fill your combo with your enum.