我有一个没有实现MVVM的用户控件(所以我只有一个名为ViewerControl的类。 在查看中,我添加了以下代码:
<ContentControl cal:View.Model="{Binding ViewerControl}" />
在 viewModel 中我有:
public ImageSourceViewModel()
{
this.ViewerControl = new ViewerControl();
}
public ViewerControl ViewerControl { get; private set; }
但是当我运行应用程序时,我收到了这个错误:
找不到ViewerControl的视图
请注意,我的目的是在我的视图上显示此UserControl,并可以在ViewModel上播放其属性。