gpt4 book ai didi

wpf - 资源字典中的资源未得到应用

转载 作者:行者123 更新时间:2023-12-04 05:34:43 25 4
gpt4 key购买 nike

我有一个名为 mainpageresources.xaml 的资源字典存储在文件夹 Resources 中,如下所示:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<DataTemplate x:Key="CommandsTemplate">
<ItemsControl ItemsSource="{Binding Path=Commands}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Margin="2,6">
<Hyperlink Command="{Binding Path=Command}">
<TextBlock Text="{Binding Path=DisplayName}" />
</Hyperlink>
</TextBlock>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</DataTemplate>
</ResourceDictionary>

在我的 MainWindow.xaml 文件中,我尝试将这个资源用于项目控件,如下所示,但它似乎不起作用。如果我从下面的 ItemsControl 中删除了可以正常工作的注释。
<Window x:Class="Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Demo" Height="350" Width="525">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/MainWindowResources.xaml">
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>

<Grid>
<ItemsControl ItemTemplate="{StaticResource ResourceKey=CommandsTemplate}">
</ItemsControl>

<!--<ItemsControl ItemsSource="{Binding Path=Commands}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Margin="2,6">
<Hyperlink Command="{Binding Path=Command}">
<TextBlock Text="{Binding Path=DisplayName}" />
</Hyperlink>
</TextBlock>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>-->
</Grid>
</Window>

这里有什么问题吗?

最佳答案

ItemTemplate您是否可以指出每个项目的模板应该是什么。相反,使用 ContentPresenter .

<ContentPresenter Content="{Binding}" 
ContentTemplate="{StaticResource CommandsTemplate}" />

关于wpf - 资源字典中的资源未得到应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12102561/

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