如何在窗口中显示数据模板

发布于 2024-08-28 03:34:45 字数 96 浏览 0 评论 0原文

我已经在 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 技术交流群。

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

发布评论

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

评论(2

皓月长歌 2024-09-04 03:34:46

如果您使用 MVVM,并且想要显示 DataTemplate 以响应 ViewModel 上的属性,则可以使用:

<ContentPresenter Content="{Binding Data}"/>

其中 Data 是您注册 DataTemplate 所用类型的属性。

If you're using MVVM, and want to display the DataTemplate in response to a property on your ViewModel, you can use:

<ContentPresenter Content="{Binding Data}"/>

Where Data is a property of the type you registered the DataTemplate with.

栖竹 2024-09-04 03:34:45

您可以将 ContentControl 放入您的用户中控件,并将其 ContentTemplate 设置为您的 DataTemplate

<ContentControl ContentTemplate="{StaticResource keyOfDataTemplate}"/>

You can put a ContentControl into your user control, and set its ContentTemplate to your DataTemplate.

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