WP7 の別の .xaml ファイルにパラメーターとして LINQ クエリの結果を送信することは可能ですか。はいの場合は、例を挙げて説明してください。前もって感謝します
これが私のコードです
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に非常に慣れていません