我正在尝试根据另一个 ListBox (ListBox1) 的 selectedItem 将 ListItems 添加到 ListBox (ListBox3) 中。问题是,项目没有添加到列表框中。
这是代码:
private void createlist()
{
if (listBox1.SelectedValue.ToString().Equals("EPL"))
{
ListBoxItem manchesterunited = new ListBoxItem();
manchesterunited.Content = "Manchester United";
listBox3.Items.Add(manchesterunited);
}
}
private void listBox1_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
createlist();
}
createlist() 进行更改并在 ListBox1 的 SelctionChanged() 事件中调用。
C# 和 WP7 编程新手,任何帮助将不胜感激。