我正在使用C#和XAML开发Windows应用商店应用。我在以下代码中的greetingOutput
文本块中显示数据。
try
{
var response = navigationParameter.ToString();
var serializer = new DataContractJsonSerializer(typeof(QualityRecordsRootObject));
var stream = new MemoryStream(Encoding.UTF8.GetBytes(response));
QualityRecordsRootObject qualityRecordsRootObject = (QualityRecordsRootObject)serializer.ReadObject(stream);
greetingOutput.Text = String.Format("{0,60}{1,60}{2,60}{3,60}",
"Brand",
"Printer",
"Printer Location",
"Date Received");
greetingOutput.Text += "\n\n";
for (int i = 0; i < qualityRecordsRootObject.auditDTOList.Count(); i++)
{
greetingOutput.Text += String.Format("{0,60}{1,60}{2,60}{3,60}",
qualityRecordsRootObject.auditDTOList[i].brandName,
qualityRecordsRootObject.auditDTOList[i].printerName,
qualityRecordsRootObject.auditDTOList[i].printerLocationName,
qualityRecordsRootObject.auditDTOList[i].receivedDate);
greetingOutput.Text += "\n";
}
}
catch (Exception ex)
{
Debug.WriteLine("exception: " + ex.Message);
greetingOutput.Text += " No Records Found!";
}
但看起来并不好;我希望表格数据视图看起来不错。 XAML中有解决方法吗?此外,我想为每一行添加功能,以便如果我单击一行,它将转到特定的链接。
答案 0 :(得分:1)
我会使用DataGrid。这是DataGrid的msdn:http://msdn.microsoft.com/en-ca/library/system.windows.forms.datagrid.aspx
答案 1 :(得分:0)
我按如下方式使用Listbox来提供所需的视图。
<ListBox Name="ResultListBox"
Height="500" Width="1000" Margin="0,20,0,0" HorizontalAlignment="Left" VerticalAlignment="Top"
Visibility="Visible" SelectionChanged="ResultListBoxSelectionChanged"
>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Width="250" Text="{Binding brandName}" />
<TextBlock Width="250" Text="{Binding printerName}" />
<TextBlock Width="250" Text="{Binding printerLocationName}" />
<TextBlock Width="250" Text="{Binding receivedDate}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
以及C#背后的代码如下。
ResultListBox.ItemsSource = qualityRecordsRootObject.auditDTOList;
我希望这会对某人有所帮助。