ListBox
我有一个addresses
。每个项目都是使用DataTemplate
的格式化地址标签。
当用户选择列表中的项目并单击Set to default
按钮时,我想更改该项目的背景颜色以表示默认值。
我只想更改那一项,而不是SelectedItem
...所以SelectedItem
可能是一种颜色而DEFAULT可能是不同的颜色。
我想用实际的方式做这件事......即使我需要一个循环来重置非默认值并设置默认值...
我的问题是ListBox.SelectedItem
只允许我访问集合中的底层对象,在本例中为Address
。
所以,以下内容不起作用:
foreach (ListBoxItem item in lstShipToAddresses.Items)
{
// does not work (can't cast Address to ListboxItem)
item.Background = Brushes.Magenta;
}
如何访问特定ListBoxItem
的背景?
我有一个计划B
,只需使用ListBox
以外的其他区域来显示默认的address
,但这会占用更多的屏幕空间,所以我就是试图避免这种情况。
更新(XAML):
<ListBox Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"
HorizontalAlignment="Stretch"
HorizontalContentAlignment="Stretch"
Name="lstShipToAddresses"
ItemsSource="{Binding Path=ocShipToAddress}"
SelectionChanged="lstShipToAddresses_SelectionChanged"
SelectedValuePath="Address_ID">
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="#FF000000" BorderThickness="2,2,2,2" CornerRadius="10" HorizontalAlignment="Stretch" >
<Grid HorizontalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel>
<TextBlock Grid.Row="0" Text="{Binding Path=Address_Label}" HorizontalAlignment="Stretch"></TextBlock>
</StackPanel>
</Grid>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
最终解决方案:
此代码在按钮单击中完成,因此SelectedItem
是我们要默认的那个。
for (int i = 0; i < lstShipToAddresses.Items.Count; i++)
{
if (lstShipToAddresses.Items[i] == lstShipToAddresses.SelectedItem)
{
// Set background on default
var listBoxItem = lstShipToAddresses.ItemContainerGenerator.ContainerFromIndex(i);
(listBoxItem as ListBoxItem).Background = Brushes.Magenta;
}
else
{
// Reset background on non-default
var listBoxItem = lstShipToAddresses.ItemContainerGenerator.ContainerFromIndex(i);
(listBoxItem as ListBoxItem).Background = Brushes.White;
}
}
答案 0 :(得分:2)
为此,您需要使用ItemContainerGenerator.ContainerFromIndex
。它会返回DependencyObject
,然后您可以将其投放到ListBoxItem
并使用ListBoxItem
的{{1}}属性:
Background