如何子类化控件及其附加属性?
我正在尝试对 System.Windows.Controls.DataGrid 进行子类化,以便添加视图模型可以绑定的特殊命令。如何执行此操作并且仍然具有 Columns
附加属性?我是否必须针对我的新类型声明它才能使用它?
I am trying to subclass System.Windows.Controls.DataGrid
in order to add special commands to which a view model can bind. How do I do this and still have the Columns
attached property? Do I have to declare it against my new type in order to use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Columns 不是附加属性..您应该像往常一样使用它,只需将 DataGrid 替换为您的控件名称:
Columns is not an attached property.. you should use it the same way you always do, just replace DataGrid with your-control-name: