在大多数教程中,我看到过用于Windows Phone 7的Silverlight应用程序中的数据绑定,作者使用了可观察的集合。看到我的数据在绑定它之后不会改变,这是完全必要的吗?为什么我不能只使用列表?
每种方法有哪些优缺点? :)
另外,为什么以下代码不起作用?它看起来应该对我来说。
C#贡献者类
public class Contributor
{
public string Name;
public string RSSUrl;
public Contributor(string name, string rssURL)
{
Name = name;
RSSUrl = rssURL;
}
}
C#项目绑定
List<Contributor> people = new List<Contributor> { new Contributor("Danny", "www.dannybrown.com") };
contributorsListBox.ItemsSource = people;
XAML
<!--Panorama item two-->
<!--Use 'Orientation="Horizontal"' to enable a panel that lays out horizontally-->
<controls:PanoramaItem Header="contributors">
<!--Double line list with image placeholder and text wrapping-->
<ListBox x:Name="contributorsListBox" Margin="0,0,-12,0" ItemsSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="0,0,0,17">
<!--Replace rectangle with image-->
<Rectangle Height="100" Width="100" Fill="#FFE5001b" Margin="12,0,9,0"/>
<StackPanel Width="311">
<TextBlock Text="{Binding Name}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}" />
<TextBlock Text="{Binding RSSUrl}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PanoramaItem>
如您所见,每个项目都有一个与之关联的红色矩形。我确信绑定是有效的,因为只要我更改列表中的贡献者数量,就会出现正确数量的红色矩形。
有人有什么想法吗?
谢谢, 丹尼。
答案 0 :(得分:3)
您的Contributor类需要拥有属性,而不仅仅是公共字段。
public class Contributor
{
public string Name { get; set; }
public string RSSUrl { get; set; }
public Contributor(string name, string rssURL)
{
Name = name;
RSSUrl = rssURL;
}
}
编辑:关于您的问题,只有在您的数据发生变化时才需要ObservableCollections(即您要添加或删除记录)。你确实可以绑定到Lists或IEnumerables。