如何在xaml中绑定?
现在我正在这样做绑定: 字段:
private readonly RestaurantContext m_context = new RestaurantContext();
init:
m_context.Load(m_context.GetGroupQuery());
this.dataGridGroup.DataContext = m_context.Groups;
在 xaml 中如何做到这一点?
now I'm doing so Binding:
field:
private readonly RestaurantContext m_context = new RestaurantContext();
init:
m_context.Load(m_context.GetGroupQuery());
this.dataGridGroup.DataContext = m_context.Groups;
How do this in xaml ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需公开您的
m_context
,确保封装此属性的类设置为视图的数据上下文,并将您的dataGridGroup
数据上下文绑定到您的属性。例如:
XAML:
Juste expose your
m_context
, ensure that the class that encapsulate this property is set as the datacontext of your view and bind yourdataGridGroup
datacontext to your prperty.For example :
XAML :
在您的 XAML 中:
它将自动绑定到您的
ViewModel
的Groups
属性In your XAML:
It will automatically bind to the
Groups
property of yourViewModel