单选列表框选择的项目到另一个列表框

时间:2013-05-17 13:38:22

标签: wpf list listbox selection selecteditem

我已经尝试了很多选项,但没有一个让我更接近结果。

我是WPF的新手,所以我很遗憾地形成了我可能很琐碎的问题。 我有一个选择listbox,我需要将selected项添加到另一个列表框中。我尝试创建一个列表,将mouse click上的所选项目添加到此列表中,然后将其他列表框绑定到该列表。我试着宣布

chosen_list.SelectedValue=selection_list.SelectedItem;

我尝试创建一个可观察的集合,但没有任何效果。 我在第二个列表框中获得的是第一个选择的值。

如果没有可观察的集合,有没有办法做到这一点?

请提前帮助并谢谢。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

作为Mustafa sais(他本可以详细说明一下),这是每次在第一个列表中进行新选择时都需要执行的操作。所以我会连接你的第一个列表的“SelectionChanged”事件。在此事件处理程序中,您可以清除第二个列表的内容,并将新选择的项目添加到该第二个列表中。

这是我的意思的一个非常简单的例子:

这是XAML页面:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="0.5*" />
        <ColumnDefinition Width="0.5*" />
    </Grid.ColumnDefinitions>
    <ListBox x:Name="lstFirstList" Grid.Column="0" SelectionChanged="ListBox_SelectionChanged">
        <ListBoxItem Content="This is a test 1" />
        <ListBoxItem Content="This is a test 2" />
        <ListBoxItem Content="This is a test 3" />
        <ListBoxItem Content="This is a test 4" />
        <ListBoxItem Content="This is a test 5" />
        <ListBoxItem Content="This is a test 6" />
        <ListBoxItem Content="This is a test 7" />
        <ListBoxItem Content="This is a test 8" />
        <ListBoxItem Content="This is a test 9" />
        <ListBoxItem Content="This is a test 10" />
    </ListBox>
    <ListBox x:Name="lstSecondList" Grid.Column="1">

    </ListBox>
    </Grid>
</Window>

以下是Code Behind:

/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        lstSecondList.Items.Clear();
        if (e.AddedItems.Count != 0)
        {
            ListBoxItem vSelectedItem = (ListBoxItem)e.AddedItems[0];
            ListBoxItem vNewItem = new ListBoxItem();
            vNewItem.Content = vSelectedItem.Content;
            lstSecondList.Items.Add(vNewItem);
        }
    }
}

现在可能有更好的方法来做到这一点,但至少应该让你开始!