如何处理的ObservableCollection<gt;在MVVM一个并行任务结果
ViewModel 类中我们可以做许多的事情,可以给页面绑定的某个字段初始值,也可以初始绑定的事件等操作。如下所示:
public class 要用的ViewModel: ViewModelBase
{
private TestContext _testContext;
/// <summary>
/// Initializes a new instance of the 要用的ViewModel class.
/// </summary>
public 要用的ViewModel ()
{
if (!IsInDesignMode) // 不是在使用Blend设计的模式下
{
_ testContext = new TestContext(); // 使用的RIAService
BindCommand(); // 绑定 事件 (用于初始化事件的)
BindData(); // 绑定数据 (用于初始化数据的 )
}
// 属性
// 事件
// 方法
}
属性
l 在View 段要绑定某个字段或集合,在MVVMLight中通常的做法是绑定属性,在ViewModel中,属性是比较容易操作的,定义一个属性,然后进行一下简单的处理,如判断是否为空,是否相等(如果相等则不用进行值便通知等),在View中只要绑定一下就可以了。
// public class要用的ViewModel
private UserInfo _userInfoModel;
/// <summary>
/// Test
/// </summary>
public UserInfo UserInfoModel // 集合 ObservableCollection<UserInfoModel > UserInfoModels
{
get
{
return _ userInfoModel;
}
set
{
if (_userInfoModel == value)
{
return;
}
_ userInfoModel = value;
RaisePropertyChanged(“UserInfoModel”);
}
}
l 在许多的MVVMLight介绍中,通常的绑定都是放在App.xmal中进行资源的绑定,既然可以抽出来了,那么自然的也可以绑定到相应的页面中,绑定的方法挺多的,可以合理的选择自己喜欢的。
如果在页面中直接用,首先要做的事情就是命名空间的引入,我们一定要将ViewModel引入到我们的页面中,和正常引入类是一样的 :
xmlns:vm="clr-namespace:项目.命名空间A.命名空间B;assembly=项目.命名空间A"
然后我们就要设定当前页的资源,
<navigation:Page.Resources>
<vm:要用的ViewModel x:"vmTest"/>
</navigation:Page.Resources>
很好,这样我们就将ViewModel引入到了该页面中,同时我们可以通过Key “vmTest” 来进行绑定了,如果单个的字段,则可以通过简单的绑定来实现,如:
<TextBlock Text={Binding UserInfoModel .UserName, Source={StaticResourcevmTest}}/>
如果要绑定的是集合则 如下面的所示:
<ComboBox Margin="0,0,10,0" Grid.Row="0" Grid.Column="1" Height="20"ItemsSource="{Binding UserInfoModels ,Source={StaticResource pnvm}}" SelectedItem="{Binding UserInfoModel ,Source={StaticResource pnvm},Mode=TwoWay}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<ComboBoxItemContent="{Binding UserName}" ></ComboBoxItem>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ComboBox>
从这里面就可看出 :在操作集合的时候,使用的是ObservableCollection ,可以值变通知的,对于绑定的集合来说,我们要的目的通常是现实或者从集合中选择某条,因此我们设置一个用于获取集合中选则的项。如果是DataGrid等,虽然没有选中也可以采用类似的方法进行接收。