由于某种原因,我收到了Cannot find view for CaliburnPractice.ViewModel
错误。我已经在这里查看了一些答案,但是没有一个对我有用。我已将view和viewmodel放入单独的命名文件夹中,并且已经覆盖了SelectedAssembly方法。到底是怎么回事?请参阅下面的代码。
ViewModel.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Caliburn.Micro;
namespace CaliburnPractice
{
public class ViewModel : PropertyChangedBase
{
}
}
应用程式
<Application x:Class="CaliburnPractice.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CaliburnPractice"
>
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<local:Bootstrapper x:Key="bootstrapper" />
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
PracticeView.xaml
<UserControl x:Class="CaliburnPractice.PracticeView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid Width="300" Height="300" Background="LightBlue">
</Grid>
Bootstrapper.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Caliburn.Micro;
using System.Reflection;
namespace CaliburnPractice
{
public class Bootstrapper : BootstrapperBase
{
public Bootstrapper()
{
Initialize();
}
protected override void OnStartup(object sender, System.Windows.StartupEventArgs e)
{
base.OnStartup(sender, e);
DisplayRootViewFor<ViewModel>();
}
protected override IEnumerable<System.Reflection.Assembly> SelectAssemblies()
{
return new[]
{
Assembly.GetExecutingAssembly()
};
}
}
}
最佳答案
因为它正在寻找视图,所以您的视图模型名为ViewModel...。您列出的视图是PracticeView...。
ShellView-> ShellViewModel
MainView-> MainViewModel等...
因此PracticeView-> PracticeViewModel将得到解决。
在不同的DLL中使用单独的视图/视图模型的情况下,使用SelectedAssembly
除非您不包括任何我们可能需要知道的内容...
关于c# - 即使SelectedAssembly被覆盖,也无法找到ViewModel的 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31187768/