相关视图和视图模型

发布于 2024-09-14 21:53:17 字数 155 浏览 6 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(1

独孤求败 2024-09-21 21:53:17

DataTemplate 将可视化树与模型对象相关联。此代码意味着,当将 SalesViewModel 的实例设置为 ContentControl 的内容(或 ItemsControl 中的项目)时,它将使用 Sales 控件呈现

A DataTemplate associates a visual tree to a model object. This code means that when an instance of SalesViewModel is set as the content of a ContentControl (or an item in an ItemsControl), it will be rendered using a Sales control

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