Silverlight DataBinding MVVM

时间:2011-05-15 20:12:54

标签: silverlight xaml binding

我在Silverlight中设置数据绑定时遇到一些问题。

我试图使用MVVM方法并找到一些很好的例子,所以我创建了我的View和我的ViewModel,我创建了一些用于包含数据的类和一个用于填充类的类。

首先,我的ViewModel看起来像:

 public class MainPageVM : INotifyPropertyChanged
    {
        ObservableCollection<Item> Items;
        public MainPageVM()
        {
            InitializeItems InitItems = new InitializeItems();
            InitItems.GenerateItemList(out Items);
            RaiseProertyChanged("Items");
        }
        public string test = "Binding Test";

        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

        private void RaiseProertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this,new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }

然后在我的视图中我有:

<UserControl.Resources>
    <viewmodel:MainPageVM x:Key="ViewModel" />    
</UserControl.Resources>
    <Grid x:Name="LayoutRoot" Background="White" DataContext="{StaticResource ViewModel}">
    <StackPanel>
        <TextBlock Text="{Binding test}"/>
        <ListBox ItemsSource="{Binding Items}"
             Width="200"
             Height="200">
            <ListBoxItem Width="190" Height="20">
                <StackPanel Orientation="Horizontal">
                    <TextBlock Text="{Binding ItemName}"/>
                    <TextBlock Text="-"/>
                    <TextBlock Text="{Binding ItemID}"/>
                </StackPanel>
            </ListBoxItem>
        </ListBox>
    </StackPanel>
</Grid>

我添加了断点,我知道我正在尝试绑定的ObservableCollection正在填充但没有任何绑定,在错误窗口中我只是在MainPageVM中不存在xxx属性。

这里的任何建议都会很棒,因为我可能会发生什么事情,这是我的第一个Silverlight应用程序。

由于

1 个答案:

答案 0 :(得分:2)

项目必须是公共财产。与您的测试字段相同。在Silverlight中,您只能绑定到公共属性。

此外,通常在这些属性的Setter中引发属性更改事件。这告诉Silverlight运行时使用该属性的新值刷新绑定到该属性的控件。