WPF 以编程方式绑定数据类
我有一个数据对象(我们称之为员工),它有许多获取/设置方法来操作/存储各种参数。
该对象是在 WPF 应用程序中的许多地方使用和引用的单例对象。
我现在正在使用 Microsoft Expression Blend 构建一个视图,并希望使用 Blend 酷接口将我的每个控件绑定到我的数据对象的各种方法。
当我尝试它时,它总是会创建我的员工数据类的静态版本。
有没有办法受益于 Blend 的良好用户界面来绑定参数,然后在代码中将我的单例员工数据类设置为要使用的引用?
最好的,
I have a data object (lets call it employee) who has many get/set methods to manipulate/store various parameters.
This object is a singleton object used and referenced in many places in the WPF app.
I am now building a view using Microsoft Expression Blend and would like to bind using Blend cool interface every of my control to the various method of my data object.
When I try it, it will always create a static version of my employee data class.
Is there a way to benefit from the nice user interface of blend to bind parameters and then afterward in the code, set my singleton employee data class as the reference to use?
best,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以告诉 Blend 使用给定类型进行设计时绑定,然后在运行时使用您喜欢的任何类型。语法如下所示:
阅读此处 了解更多信息。
You can tell blend to use a given type for design-time bindings, and then use whatever you like at runtime. The syntax looks like this:
Read here for more info.