How to Clear values from ListBox without removing List items in WPF

时间:2017-08-04 13:15:46

标签: c# wpf

In my situation When I use productsLocLB.items.Clear(). it removes All items instead of removing only values.

ListBox x:Name="productsLocLB"  ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Disabled" ScrollViewer.CanContentScroll="False" BorderThickness="0" ItemsPanel="{StaticResource ListboxItemPanel}"   HorizontalAlignment="Stretch" Width="Auto" Background="{x:Null}" Margin="0,25,0,0" Height="564" VerticalAlignment="Top" ItemContainerStyle="{StaticResource RackListBoxItemStyle}"  >
    <ListBox.ItemTemplate>
        <!--User Info Cadview item Tamplate -->
        <DataTemplate>
            <Border  >
                <Grid HorizontalAlignment="Left" Width="150" Height="60" VerticalAlignment="Top" Cursor="Hand" MouseLeftButtonDown="Grid_OnMouseDownOrTouchDown" TouchDown="Grid_OnMouseDownOrTouchDown">
                    <Image x:Name="productLocImg" Width="150"  Source="{Binding SPImage}" Stretch="Fill"/>
                    <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
                        <Label Content="{Binding ProductName}" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" FontSize="18" Background="#99000000"/>
                        <Label Content="{Binding Avalability}" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Black" FontSize="14" Background="#90FFFFFF" FontWeight="Bold"/>
                    </StackPanel>
                </Grid>
            </Border>
        </DataTemplate>

        <!---->
    </ListBox.ItemTemplate>
<ListItem></ListItem>
<ListItem></ListItem>
<ListItem></ListItem>

</ListBox>

1 个答案:

答案 0 :(得分:1)

删除

productsLocLB.items.Clear()

并改为编写(假设您绑定到ItemsSource的集合称为MyItems,并且您希望为此集合中的每个条目设置ProductName = string.Empty;

foreach(var item in MyItems)
{
    ProductName = string.Empty;
}

您还必须实施INotifyPropertyChanged,否则将无法通知用户界面,并且不会显示新值。

相关问题