如何子类化控件及其附加属性?

发布于 2024-10-19 18:25:27 字数 132 浏览 5 评论 0原文

我正在尝试对 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 技术交流群。

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

发布评论

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

评论(1

聊慰 2024-10-26 18:25:27

Columns 不是附加属性..您应该像往常一样使用它,只需将 DataGrid 替换为您的控件名称:

<my:MyDataGrid>
  <my:MyDataGrid.Columns>
     <!--  Columns goes here --->
  </my:MyDataGrid.Columns>
</my:MyDataGrid>

Columns is not an attached property.. you should use it the same way you always do, just replace DataGrid with your-control-name:

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