相关视图和视图模型
<DataTemplate DataType="{x:Type vm:SalesViewModel}">
<vm:Sales>
</DataTemplate>
wpf资源文件中上述代码的含义是什么?
<DataTemplate DataType="{x:Type vm:SalesViewModel}">
<vm:Sales>
</DataTemplate>
Whats the meaing of the above code in wpf resource file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataTemplate
将可视化树与模型对象相关联。此代码意味着,当将SalesViewModel
的实例设置为ContentControl
的内容(或ItemsControl
中的项目)时,它将使用Sales
控件呈现A
DataTemplate
associates a visual tree to a model object. This code means that when an instance ofSalesViewModel
is set as the content of aContentControl
(or an item in anItemsControl
), it will be rendered using aSales
control