使用项目内的按钮删除ListboxItem而不选择项目

时间:2017-08-17 14:22:07

标签: c# wpf binding listbox itemtemplate

我有ListBox ItemTemplate,因此每个项目都会显示Name中的TextBlockButton以删除此项目。< / p>

我可以在选择项目时删除该项目,然后单击“删除”按钮。但我不想选择该项目,只需单击删除按钮并删除包含删除按钮的当前项目。

我在上面添加了一些代码。我怎么能这样做?

XAML代码

<ListBox Grid.Row="1" x:Name="listBoxProduct"  SelectionMode="Single"   Margin="0" Background="Transparent" ScrollViewer.VerticalScrollBarVisibility="Auto"  ScrollViewer.HorizontalScrollBarVisibility="Hidden" Height="200">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <Border BorderThickness="1" Margin="0" Height="45" CornerRadius="4" Width="875"  Background="#2E323B" BorderBrush="Black">
                <DockPanel>
                    <TextBlock Text="{Binding Customer}"  Foreground="White" TextWrapping="Wrap"   FontSize="16"  HorizontalAlignment="Left" Margin="70,0,0,0" Width="230" VerticalAlignment="Stretch"/>
                    <TextBlock Text="{Binding Piece}"    Foreground="White"  TextWrapping="Wrap"  FontSize="16"  HorizontalAlignment="Left" Margin="4,0,0,0" Width="200" VerticalAlignment="Center"/>
                    <TextBlock Text="{Binding Material}"  Foreground="White"  TextWrapping="Wrap"  FontSize="16"  HorizontalAlignment="Left" Margin="10,0,0,0" Width="100" VerticalAlignment="Center"/>
                    <TextBlock Text="{Binding Quantity}"  Foreground="White"    FontSize="16"  HorizontalAlignment="Left" Margin="10,0,0,0" Width="50" VerticalAlignment="Center"/>
                    <TextBlock Text="{Binding Weight}"  Foreground="White" FontSize="16"  HorizontalAlignment="Left" Margin="40,0,0,0" Width="50" VerticalAlignment="Center"/>
                    <Button Content="Delete" Name="btnDelete" Foreground="Black" Background="#CCCCCC" HorizontalAlignment="Stretch" Margin="20,0,0,0" Height="35" Width="76" VerticalAlignment="Center" Click="btnDelete_Click"/>
                </DockPanel>
            </Border>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

C#CODE

public partial class CreateProduct : Window
{
    private ObservableCollection<Liste> list = new ObservableCollection<Liste>();

    private void btnDelete_Click(object sender, RoutedEventArgs e)
    {
        list.Remove((Liste)listBoxProduct.SelectedItem);

    }
}

1 个答案:

答案 0 :(得分:1)

试试这个:

private void btnDelete_Click(object sender, RoutedEventArgs e)
{
    Button btn = sender as Button;
    list.Remove((Liste)btn.DataContext);
}