我有一个列表框,每个列表框项都是我自定义的用户控件。我使用样式删除了列表框项目的所有默认突出显示(即删除所选项目的蓝色背景突出显示)。
我想要的是能够对我的用户控件执行一些特殊操作,以表示列表框项目已突出显示。比如让用户控件上的边框更加粗体,就像那样。
如果我可以在用户控件中获得布尔值,我想从那里我就能够弄清楚如何通过转换器或者最有可能的东西对用户控件进行必要的更改。
我不确定的是,如何向用户控制传递显示用户控件所在的列表框项目是否突出显示的信息。
有问题的代码是这样的:
<ListBox.ItemTemplate>
<DataTemplate>
<hei:OrangeUserCtrl DataContext="{Binding}" Height="40" Width="40" />
</DataTemplate>
</ListBox.ItemTemplate>
如果突出显示列表框项目,我如何传入用户控件(最好是真/假)?
由于
答案 0 :(得分:1)
您可以使用Tag
属性和RelativeSource绑定。
在我的示例中突出显示项目时,我更改了边框属性(BorderBrush=Red
和BorderThickness=3
)。
源代码:
保存数据的简单类:
class Person
{
public string Name { get; set; }
public string Surname { get; set; }
}
列表框:
<ListBox ItemsSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate>
<local:MyCustomPresenter DataContext="{Binding}"
Tag="{Binding Path=IsSelected, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ListBoxItem}, UpdateSourceTrigger=PropertyChanged}"
Height="60" Width="120" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
UserControl显示自定义数据:
<UserControl x:Class="WpfTextWrapping.MyCustomPresenter"
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"
d:DesignHeight="300" d:DesignWidth="300">
<Border Margin="10">
<Border.Style>
<Style TargetType="Border">
<Setter Property="BorderBrush" Value="Green" />
<Setter Property="BorderThickness" Value="1" />
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Tag, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=UserControl}, UpdateSourceTrigger=PropertyChanged}" Value="True">
<Setter Property="BorderBrush" Value="Red" />
<Setter Property="BorderThickness" Value="3" />
</DataTrigger>
</Style.Triggers>
</Style>
</Border.Style>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Name}" />
<TextBlock Text="{Binding Surname}" />
</StackPanel>
</Border>
</UserControl>
答案 1 :(得分:0)
如果我理解您,您需要向自定义UserControl
添加一个属性,该属性绑定到嵌套ComboBox
,例如:
public object MySelectedItem
{
get { return myNestedCombox.SelectedItem; }
set { myNestedCombox.SelectedItem = value; }
}
您还需要NotifyPropertyChanged
。