gpt4 book ai didi

c# - 如何将 wpf ListBox 的 ItemTemplate 嵌入到 Window 的资源中?

转载 作者:行者123 更新时间:2023-11-30 19:51:50 25 4
gpt4 key购买 nike

很抱歉,如果这是一个基本问题,但我怎样才能将我拥有的用于 ListBox 的 ItemTemplate 放入窗口的资源中,以便多个 ListBox 可以使用它。

这是一些 XAML:

<Window x:Class="Example">
<Window.Resources>
<DataTemplate x:Key="dtExample">
<ListBox.ItemTemplate>
// styles go here...
</ListBox.ItemTemplate>
</DataTemplate>
</Window.Resources>
<ListBox ItemTemplate="{StaticResource dtExample}">
// items go here...
</ListBox>
</Window>

这会引发“附加属性没有 setter ”设计时错误。为了简洁起见,我删除了我认为无关紧要的部分代码。

谢谢

最佳答案

只需将您的项目模板添加到您窗口的资源中并添加一个键:

<Window.Resource>
<DataTemplate x:Key="myTemplate">
....
</DataTemplate>
</Window.Resources>

然后像这样应用它:

<ListBox ItemTemplate="{StaticResource myTemplate}">
...
</ListBox>

关于c# - 如何将 wpf ListBox 的 ItemTemplate 嵌入到 Window 的资源中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/641815/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com