我有一个来自 Toolkit 的多选 ListBox,我想在新页面中显示被点击的项目。
如何从点击的项目中提取每个项目?每个项目有 4 个字段。
这是填充 ListBox 的代码:
void client_DownloadStringCompleted(object sender,
DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
{
string xml = e.Result;
XDocument data = XDocument.Parse(xml);
var persons = from query in data.Descendants("Table")
select new MailList
{
Sender = (string)query.Element("FromUser"),
Body = (string)query.Element("Message"),
Date = ((DateTime)query.Element("mDate")).ToString("MM/yy"),
Time = (string)query.Element("mTime"),
};
EmailList.ItemsSource = persons;
}
}
我想将 Sender 和 Body 字段发送到另一个页面。
谢谢。