如何在窗口中显示数据模板
我已经在 Window.Resources 中声明了一个 DataTemplate;我不打算在 ItemsControl 中使用它,而只是将其用作用户控件。我如何将其放在表格上?
I have declared a DataTemplate in Window.Resources; I don't intend to use it inside an ItemsControl, but rather just use it as a user control. How do I put it on a form?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 MVVM,并且想要显示 DataTemplate 以响应 ViewModel 上的属性,则可以使用:
其中 Data 是您注册 DataTemplate 所用类型的属性。
If you're using MVVM, and want to display the DataTemplate in response to a property on your ViewModel, you can use:
Where Data is a property of the type you registered the DataTemplate with.
您可以将 ContentControl 放入您的用户中控件,并将其
ContentTemplate
设置为您的DataTemplate
。You can put a ContentControl into your user control, and set its
ContentTemplate
to yourDataTemplate
.