如果选择了更改ListBox项目的WPF DataTemplate

我需要根据是否选择项目来更改ListBox中项目的DataTemplate(选择时显示不同/更多信息)。

单击有问题的ListBox项(仅通过制表键)时,在DataTemplate(堆栈面板)的最顶层元素上没有出现GotFocus / LostFocus事件,并且我没有主意。


凤凰求蛊
浏览 705回答 3
3回答

弑天下

还应该注意的是,堆栈面板不可操纵,因此它永远都不会获得焦点(如果您/ really /希望使其聚焦,则将其设置为Focusable = True)。但是,在这种情况下要记住的关键是Stackpanel是TreeViewItem的子级,在这种情况下,它是ItemContainer。正如Micah所建议的那样,调整itemcontainerstyle是一个好方法。您可能可以使用DataTemplates进行操作,诸如datatriggers之类的事情将使用RelativeSouce标记扩展来查找listviewitem

慕后森

最简单的方法是为“ ItemContainerStyle”而不是“ ItemTemplate”属性提供模板。在下面的代码中,我创建了2个数据模板:一个用于“未选中”状态,一个用于“选中”状态。然后,我为“ ItemContainerStyle”创建一个模板,该模板是包含该项目的实际“ ListBoxItem”。我将默认的“ ContentTemplate”设置为“ Unselected”状态,然后提供一个触发器,当“ IsSelected”属性为true时,该触发器将交换出模板。(注意:为简单起见,我将后面代码中的“ ItemsSource”属性设置为字符串列表)<Window.Resources><DataTemplate x:Key="ItemTemplate">&nbsp; &nbsp; <TextBlock Text="{Binding}" Foreground="Red" /></DataTemplate><DataTemplate x:Key="SelectedTemplate">&nbsp; &nbsp; <TextBlock Text="{Binding}" Foreground="White" /></DataTemplate><Style TargetType="{x:Type ListBoxItem}" x:Key="ContainerStyle">&nbsp; &nbsp; <Setter Property="ContentTemplate" Value="{StaticResource ItemTemplate}" />&nbsp; &nbsp; <Style.Triggers>&nbsp; &nbsp; &nbsp; &nbsp; <Trigger Property="IsSelected" Value="True">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <Setter Property="ContentTemplate" Value="{StaticResource SelectedTemplate}" />&nbsp; &nbsp; &nbsp; &nbsp; </Trigger>&nbsp; &nbsp; </Style.Triggers></Style></Window.Resources><ListBox x:Name="lstItems" ItemContainerStyle="{StaticResource ContainerStyle}" />
打开App,查看更多内容
随时随地看视频慕课网APP