使用 DataTemplate 进行动态视图绑定
我试图在链接到上面 MainView 代码的 MainViewModel 代码中动态绑定视图。 如何动态绑定数据类型和 vw:SomeView?
<DataTemplate DataType="{Binding GetViewModel}" Resources="{Binding GetView}">
<!--<vw:SomeView/>-->
</DataTemplate>
I am trying to bind view dynamically in code of MainViewModel linked to above MainView's code.
How can I bind datatype and vw:SomeView dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataTemplate.DataType 属性不是依赖项属性,因此您无法绑定到其值:
http://msdn.microsoft.com/en-us/library/system.windows.datatemplate.datatype.aspx
通常,您将在 XAML 中定义多个 DataTemplate 实例,这些实例描述您的 UI渲染每个视图模型。然后,当控件尝试呈现该类型的视图模型时,框架会负责使用这些 DataTemplate。
The DataTemplate.DataType property is not a dependency property so you cannot bind to its values:
http://msdn.microsoft.com/en-us/library/system.windows.datatemplate.datatype.aspx
Typically you will have multiple DataTemplate instances define in your XAML which describe how your UI renders each view model. The framework then takes care of using these DataTemplates when a control tries to render a view model of that type.