gpt4 book ai didi

list - 在 Windows phone 7 中更改 ListBox 的选定项

转载 作者:行者123 更新时间:2023-12-02 04:07:56 25 4
gpt4 key购买 nike

我需要从包含我的类对象的列表框中选择一个项目。这是我的代码:

加载事件:

  private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
XDocument loadedData = XDocument.Load("file.xml");
var data = from query in loadedData.Descendants("element")
select new myClass
{
First = (string)query.Element("first"),
Second = (string) query.Element("second")
};
List<myClass> d = data.ToList<myClass>();
myList = d;
myListBox.ItemsSource = data;
}

然后是我应该更改所选项目的按钮:
  private void button1_Click(object sender, RoutedEventArgs e)
{
myListBox.SelectedItem = myList[100];
}

我在这里做错了吗?

最佳答案

myList不是您绑定(bind)到列表的集合。
要么制作d范围更广的变量,请参阅 button1_click 中的变量
或者
店铺 datamyList而不是它的副本。

关于list - 在 Windows phone 7 中更改 ListBox 的选定项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6668378/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com