WPF DataTrigger更改控制

本文关键字:更改控制 DataTrigger WPF | 更新日期: 2023-09-27 17:59:52

我有一个由ObservableCollection<MenuTrayItem>填充的ListView。在我的参考资料中,我为该类定义了一个DataTemplate。我想捕获ListViewItem控件上的触发器,并更改DataTemplateBorder控件的背景。

我得到的错误是

{"Child with Name 'Container' not found in VisualTree."}

GlobalResources.xaml

<DataTemplate x:Key="MenuTrayItem_Template" DataType="{x:Type model:MenuTrayItem}">
    <view:MenuTrayItemView Margin="5,0,5,0" />
    <DataTemplate.Triggers>
        <DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type ListViewItem}},Path=IsSelected}" Value="True">
            <!-- i am trying to change the background on the control "Container"
                 in the <view:MenuTrayitemView /> -->
            <Setter TargetName="Container" Property="Border.Background" Value="Red" />
        </DataTrigger>
    </DataTemplate.Triggers>
</DataTemplate>

/Views/MenuTrayItemView.xaml

<UserControl x:Class="CellestusInvoicing.Views.MenuTrayItemView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d">
    <UserControl.Resources>
        <ResourceDictionary Source="/Resources/GlobalResources.xaml" />
    </UserControl.Resources>
    <Border x:Name="Container" Width="64" Height="48" CornerRadius="5" Background="{StaticResource Gradient_Grey}" Cursor="Hand" MouseEnter="Container_MouseEnter" MouseLeave="Container_MouseLeave">
        <StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <Image Margin="0,3,0,0" Width="60" Height="30" Source="{Binding Image, FallbackValue='/Images/Icons/MenuTray_Home.png'}" />
            <TextBlock Margin="3,0,0,0" Text="{Binding Title, FallbackValue='title'}" FontSize="10" Foreground="White" />
        </StackPanel>
    </Border>
</UserControl>

WPF DataTrigger更改控制

边界在setter的范围之外。

来自MSDN:

您可以将此属性设置为应用setter集合(此setter所属的集合)的范围内的任何元素的名称。这通常是包含此setter的模板中的一个命名元素。

您可以将触发器放置在"边框样式"本身中。从内部查找ListViewItem。由于这将UserControl与ListViewItems中可能不需要的使用相耦合,因此您也可以在UserControl本身上创建一个接口属性,该属性将由DataTrigger使用,DataTriggers将再次位于Border上,但该属性将从外部设置。