WPF 视图 - UserControl 路径而不是 UserControl 内容
WPF View - UserControl path instead of UserControl content
我看到 UserControl 路径而不是 UserControl 内容的原因是什么?
我有相当复杂的代码,所以我只是想寻求一些提示,我应该在哪里寻找问题..
当我调试我的应用程序时显示:
据推测,您有 ConteControl 绑定到 OrderEntryViewModel 但它不与任何视图相关联。你需要
<Window.Resources>
<DataTemplate DataType="{x:Type viewmodel:OrderEntryViewModel}">
<userControls:YourView/>
</DataTemplate>
</Window.Resources>
我看到 UserControl 路径而不是 UserControl 内容的原因是什么?
我有相当复杂的代码,所以我只是想寻求一些提示,我应该在哪里寻找问题..
当我调试我的应用程序时显示:
据推测,您有 ConteControl 绑定到 OrderEntryViewModel 但它不与任何视图相关联。你需要
<Window.Resources>
<DataTemplate DataType="{x:Type viewmodel:OrderEntryViewModel}">
<userControls:YourView/>
</DataTemplate>
</Window.Resources>