我即将开始为 Windows Phone 8 开发应用程序并完成第一步(我已经有一些使用 WinForms 的 C# 背景)。但我意识到一切,尤其是 XAML,似乎都如此复杂。即使是像填充列表这样最简单的事情, *也是如此痛苦。它确实适用于扁平且极其简单的绑定(如大多数教程中所建议的那样),但这只是僵硬和不灵活。
我想生成一个列表(LongListSelector),其中包含包含这些信息的项目(“o”是每个项目):
<o.Name>
<o.TotalAmount> (<o.Things.Count>)
[if o.MiscThings.Count > 0]<o.MiscThings.Count> other thing(s)[/if]
数据示例:
John Doe
22.97 (3)
2 other thing(s)
Jane Doe
7.55 (1)
我试图通过以下方式实现这一目标:
<phone:LongListSelector x:Name="LLS_Summary">
<phone:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Top">
<TextBlock Text="{Binding Name}" Style="{StaticResource PhoneTextLargeStyle}" />
<TextBlock Text="{Binding TotalAmount} ({Binding Things.Count})" /> <!-- throws an error, concatenation doesn't work? -->
<!-- well yeah this is obviously not possible with data binding -->
</StackPanel>
</DataTemplate>
</phone:LongListSelector.ItemTemplate>
</phone:LongListSelector>
// in .cs
LLS_Summary.ItemsSource = App.MyItems; // IList
差远了。仅当我事先有某种转换器并且有条件的事情根本无法以这种方式工作时,串联似乎才起作用。
所以我的方法是自己在运行时生成元素。但是怎么做?LongListSelector 控件似乎根本不支持这一点。在 WinForms 我会做类似的事情:
Label line1 = new Label();
line1.Text = o.Name;
Label line2 = new Label();
line2.Text = o.TotalAmount + " (" + o.Things.Count + ")";
Label line3 = new Label();
if (o.MiscThings.Count > 0)
line3.Text = o.MiscThings.Count + " other thing(s)";
else
line3.Text = "";
// sizing, positioning etc.
Panel panel = new Panel();
panel.Controls.Add(line1);
panel.Controls.Add(line2);
panel.Controls.Add(line3);
LLS_Summary.Controls.Add(panel);
如何在 Win(P)RT 中实现这一点?这甚至是这样做的方法吗?