我有一个使用域服务的简单项目,并且尝试从我的 View 模型将combox与域服务绑定(bind)。
我正在使用mvvm
设计模式,请注意,当我不使用mvvm
设计模式,并且从后面的代码绑定(bind)combox时,我会在combox上看到结果。
enter code here
public class MainViewModel:INotifyPropertyChanged
{
DomainService1 ctx = new DomainService1();
private ObservableCollection<product> _products;
public ObservableCollection<product> Products
{
get { return _products; }
set {
if (value != _products)
{
_products = value;
OnPropertyChanged("Products");
}
}
}
public MainViewModel()
{
if (!DesignerProperties.IsInDesignTool)
{
LoadProdcuts();
}
}
private void LoadProdcuts()
{
ctx.Load(ctx.GetProductsQuery(), LoadProdcutCallBack, null);
}
private void LoadProdcutCallBack(LoadOperation<product>lo)
{
_products = new ObservableCollection<product>(lo.Entities);
}
private void OnPropertyChanged(string propName)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}
public event PropertyChangedEventHandler PropertyChanged;
}
enter code here
<UserControl.Resources>
<data:MainViewModel x:Key="VwModel"/>
</UserControl.Resources>
<ComboBox HorizontalAlignment="Left" VerticalAlignment="Top" Height="30" Width="100" ItemsSource="{Binding Products}"/>
最佳答案
您必须设置DataContext
属性:
<ComboBox HorizontalAlignment="Left" VerticalAlignment="Top" Height="30" Width="100"
DataContext="{StaticResource VwModel}"
ItemsSource="{Binding Products}"/>
关于c# - 无法将简单的combox与mvvm和wcf ria服务绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14551785/