我編寫了一切,當我運行該項目時,它沒有在屏幕上顯示輸出。任何人都可以告訴我,用於在屏幕上顯示輸出的代碼是什麼?如何在屏幕上顯示輸出?
這是在我的(不是控制檯)應用程序中使用的代碼。
private async void Button_Click_1(object sender, RoutedEventArgs e) {
StorageFile xmlFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("Content1.xml");
XmlDocument xmlDoc;
xmlDoc = await XmlDocument.LoadFromFileAsync(xmlFile);
System.Xml.Linq.XDocument duc = System.Xml.Linq.XDocument.Parse(xmlDoc.GetXml());
var query=
from Date in duc.Root.Elements("Serial")
where Date.Attribute("No").Value=="1"
from Current in Date.Elements("Current")
select new {
NarratedBy=Current.Attribute("NarratedBy").Value,
value=Current.Attribute("Date").Value
};
foreach(var Date in query) {
System.Diagnostics.Debug.WriteLine("{0}\t{1}", Date.NarratedBy, Date.value);
}
}
你必須做一個輸出屏幕顯示在屏幕上。這可以通過textbox或textarea來完成。 –
你有什麼試圖解決這個問題?你有沒有嘗試創建一個GUI應用程序?也許使用一些控件? –
它是一個winform還是一個網頁? –