如何在Silverlight中将集合类用作静态资源

时间:2011-02-28 19:03:57

标签: silverlight binding path itemssource staticresource

我有一个名为Customer的简单类,有2个属性 public Name {get;set;}
public LastName {get;set}

然后我创建了一个名为CustomerList的集合类,只有一个名为Customers

的公共属性
public class CustomerList
{
    public List<Customer> Customers { get; set; }

    public CustomerList()
    {
        Customers = new List<Customer>();
        Customers.Add(new Customer() { Name = "Foo", LastName = "Bar" });
        Customers.Add(new Customer() { Name = "Foo1", LastName = "Bar1" });
    }
}

现在我想在XAML中将此类用作静态资源。

  <UserControl.Resources> 
  <customers:CustomerList x:Key="CustomersKey">
  </UserControl.Resources>

然后在ListBox中使用它

 <ListBox x:Name="lvTemplate" ItemsSource="{Binding Source={StaticResource CustomersKey}}">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel>
                    <TextBox Text="{Binding Name}"/>
                    <TextBox Text="{Binding LastName}"/>
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

如果我在代码中设置ItemsSource,则在实例化类之后,所有工作都正常。如果我尝试从XAML设置它并且静态资源没有发生。即使我使用{Binding Path=Customer.Name}{Binding Path=Name}

也不行

显然我想念一些......

1 个答案:

答案 0 :(得分:5)

由于CustomerList实际上不是项目列表(未实现IEnumerable),因此您需要指定要用作ItemsSource的对象内的属性。

<ListBox ItemsSource="{Binding Path=Customers, Source={StaticResource CustomersKey}}">