我正在框架上和框架中关注本教程。Screen
ScreenConductors
Caliburn.Micro
我使用的是 WPF,而不是 Silverlight,并且我在 App.xaml 中进行了相应的更改(对 Bootstrapper 使用 MergedDictionary)。
最初的简单导航示例有一个带有两个按钮的外壳,以及一个显示两个可能屏幕的内容区域,由ShellViewModel
.
然后我尝试将每个按钮移动到其对应的视图,以便 PageOne 将有一个按钮带到 PageTwo,反之亦然。我这样做是因为我不希望 home shell 在整个应用程序中不断“显示其内部”。
事实是,如果我只是将一个按钮移动到一个Screen
视图,它不再绑定到命令,它在 中ShellViewModel
,而不是在Screen
ViewModel 本身中。我知道这些绑定按惯例发生,但我不知道惯例是否涵盖这种情况,或者我需要配置。
我面临的症状是:当我运行应用程序时,PageOneView 显示,其中带有“转到第二页”按钮,但是当我单击该按钮时没有任何反应。
我问的问题是:“如何正确地将 ScreenView.xaml 中的按钮“冒泡”到 ScreenConductorViewModel.cs 中的操作?
我当前的代码如下:
PageOneView.xaml
<UserControl x:Class="ScreenConductor.PageOneView"
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 Background="LightGreen">
<Button x:Name="ShowPageTwo" Content="Show Page Two" HorizontalAlignment="Center" VerticalAlignment="Top" />
</Grid>
</UserControl>
PageOneViewModel
using Caliburn.Micro;
namespace ScreenConductor {
public class PageOneViewModel : Screen {
protected override void OnActivate() {
base.OnActivate();
}
}
}
ShellView.xaml
<Window x:Class="ScreenConductor.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<ContentControl x:Name="ActiveItem" />
</Window>
ShellViewModel.cs
使用 Caliburn.Micro;
namespace ScreenConductor
{
public class ShellViewModel : Conductor<object>
{
public ShellViewModel()
{
ShowPageOne();
}
public void ShowPageOne()
{
ActivateItem(new PageOneViewModel());
}
public void ShowPageTwo()
{
ActivateItem(new PageTwoViewModel());
}
}
}