如何在列表框 wpf 中获取多个选定项

本文关键字:获取 列表 wpf | 更新日期: 2023-09-27 18:33:26

我对如何从 wpf 中的列表框中检索多个选定值感到困惑。

在 XAML 中,我有以下具有多个选择模式的列表框。

 <ListBox Height="100" HorizontalAlignment="Left" Margin="139,207,0,0" Name="listBox1" VerticalAlignment="Top" Width="120" SelectionChanged="listBox1_SelectionChanged" SelectionMode="Multiple" />    
 <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="319,220,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />

我现在如何签入每个循环?

        foreach (ListItem li in listBox1.Items)
        {
                ?? // how to check li is selected or not
        }

如何在列表框 wpf 中获取多个选定项

您可以在

ListBox.SelectedItems中找到它们。

foreach (var item in listBox1.SelectedItems)
{
}

另一个例子

int j = 0;
for (int i = 0; i < lbItems.Items.Count; i++)
{
   if (lbItems.Items[i] == lbItems.SelectedItems[0])
   j++;
}
MessageBox.Show(lbItems.Items.IndexOf(lbItems.SelectedItems[0]).ToString()
+ string.Format("'r'nThere are {0} occurences of this object in this list",j) )