要为ListBox控件的不同项设置不同的背景色,可以通过自定义样式或者代码进行设置。以下是两种方法:
<ListBox>
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Style.Triggers>
<Trigger Property="ItemsControl.AlternationIndex" Value="0">
<Setter Property="Background" Value="LightGray"/>
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter Property="Background" Value="White"/>
</Trigger>
</Style.Triggers>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
for (int i = 0; i < listBox.Items.Count; i++)
{
if (i == 2)
{
ListBoxItem item = (ListBoxItem)listBox.Items[i];
item.Background = Brushes.Red;
}
}
这样就可以根据需要在ListBox控件中设置不同项的背景色。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。