1

我试图在列表框中突出显示选定的行,但我很难让它工作。我在网上查看过,我发现的解决方案要么涉及使用 style.resources 要么 style.trigger,我的程序说这两种方法都无法识别。

我的列表框的 xaml 代码如下:

<ListBox x:Name="selectClassCanvas_ListBox" Width="448" Height="488" 
         SelectionChanged="selectListSelectionChanged" Grid.RowSpan="2" 
         Canvas.Left="4" Canvas.Top="54" Background="White">
  <ListBox.ItemTemplate>
    <DataTemplate>
      <ListBoxItem Width="450" BorderBrush="Black" BorderThickness="0,0,0,1">
        <TextBlock Text="{Binding}" FontWeight="Bold" 
                   Foreground="Black" Height="50" 
                   FontSize="17"/>
      </ListBoxItem>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>

有人可以给我一些关于如何使列表框的选定行突出显示的说明吗?

4

0 回答 0