Silverlight:在XAML中声明一组数据?

时间:2011-01-04 22:20:19

标签: c# silverlight xaml

我想在Silverlight for Windows Phone 7应用程序中声明一些数据。我不确定语法是什么。

例如:

public class Person 
{
      public string Name {get; set;}
      public int Age {get; set;}
}

<Application.Resources>
    <Data x:Name="People">
         <Person Age="2" Name="Sam" />
         <!-- ... -->
    </Data>
</Application.Resources>

显然Data不是有效标记。我在这里想要什么?

1 个答案:

答案 0 :(得分:6)

首先需要定义容器类型: -

using System.Collections.ObjectModel;

...

public class People : ObservableCollection<Person> { }

然后,您需要将您的People / Person类所在的命名空间添加到Xaml典型中,如下所示: -

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:SilverlightApplication1"
         x:Class="SilverlightApplication1.App"
         >

只需将“SilverlightApplication1”替换为您的应用程序命名空间。

现在你可以: -

     <Application.Resources>
         <People x:Name="People">
             <Person Age="2" Name="Sam" />
             <Person Age="11" Name="Jane" />
         </People>
     </Application.Resources>