gpt4 book ai didi

c# - 如何在某些 ListBox 项目上使用不同的控件模板?

转载 作者:太空宇宙 更新时间:2023-11-03 22:48:28 25 4
gpt4 key购买 nike

我有一个 ListBox,我在其中使用以下 XAML 样式设置了项目的样式:

<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="SnapsToDevicePixels" Value="True" />
<Setter Property="Height" Value="120px" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border x:Name="MenuButtonBorder" Background="Transparent"
BorderBrush="{StaticResource PrimaryColor}" BorderThickness="0,0,0,1">
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
<Path x:Name="MenuButtonIcon" Data="{Binding IconPathString}" Margin="0,0,0,20"
StrokeThickness="1" Stroke="{StaticResource PrimaryColor}"
Fill="{StaticResource PrimaryColor}" HorizontalAlignment="Center" />
<TextBlock x:Name="MenuButtonLabel" Text="{Binding Label}"
FontSize="{StaticResource Title1FontSize}"
Foreground="{StaticResource PrimaryColor}" HorizontalAlignment="Center" />
</StackPanel>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsFocused" Value="True">
<Setter TargetName="MenuButtonBorder" Property="Background" Value="{StaticResource PrimaryColor}" />
<Setter TargetName="MenuButtonLabel" Property="Foreground" Value="{StaticResource HighlightColor}" />
<Setter TargetName="MenuButtonIcon" Property="Fill" Value="{StaticResource HighlightColor}" />
<Setter TargetName="MenuButtonIcon" Property="Stroke" Value="{StaticResource HighlightColor}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

ListBox ItemsSource 绑定(bind)到 View 模型中的 ObservableCollection 属性。在其中一个由 MenuButtonLabel 值标识的项目中,我想要一个不同的模板,我在其中添加了几个控件。如何做到这一点?

最佳答案

您可以使用 DataTemplateSelector。将其指定为您的 ListBox 的 ItemTemplateSelector

XAML

<ListBox ItemsSource="{Binding Items}" ItemTemplateSelector="{StaticResource myTemplateSelector}" />

数据模板选择器

class MyTemplateSelector : DataTemplateSelector
{
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
// TODO: cast item to your viewmodel
// return template based on the Label property;
}
}

注意:您可以在 DataTemplateSelector 上为不同的 DataTemplates 创建属性,或者您可以从容器中获取模板

FrameworkElement element = container as FrameworkElement;
return element.FindResource("mycoolTemplate") as DataTemplate;

关于c# - 如何在某些 ListBox 项目上使用不同的控件模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48751779/

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