是否可以将 LINQ 查询的结果作为参数发送到 WP7 中的另一个 .xaml 文件。如果是,那么您能否通过示例进行解释。提前致谢
这是我的代码
XDocument xml = XDocument.Load("VideoContent.xml");
var content = from query in xml.Descendants("Video") where (string)query.Element("Clip") == parameter
select new Video() { File = (string)query.Element("File") }
现在我需要使用 NAvigationService 将 File 中的字符串传递给另一个 .xaml。
PS 我对 WP7 和 LINQ 很陌生