2

我正在框架上和框架中关注本教程ScreenScreenConductorsCaliburn.Micro

我使用的是 WPF,而不是 Silverlight,并且我在 App.xaml 中进行了相应的更改(对 Bootstrapper 使用 MergedDictionary)。

最初的简单导航示例有一个带有两个按钮的外壳,以及一个显示两个可能屏幕的内容区域,由ShellViewModel.

然后我尝试将每个按钮移动到其对应的视图,以便 PageOne 将有一个按钮带到 PageTwo,反之亦然。我这样做是因为我不希望 home shell 在整个应用程序中不断“显示其内部”。

事实是,如果我只是将一个按钮移动到一个Screen视图,它不再绑定到命令,它在 中ShellViewModel,而不是在ScreenViewModel 本身中。我知道这些绑定按惯例发生,但我不知道惯例是否涵盖这种情况,或者我需要配置。

我面临的症状是:当我运行应用程序时,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());
        }
    }
}

4

2 回答 2

3

只要您使用显式操作绑定语法绑定命令,冒泡应该可以正常工作。这是因为按名称绑定 CM 检查绑定到当前 vm 的视图上的控件。如果没有匹配的命名控件,则不会创建绑定。

你可以使用这个:

<SomeControl cal:Message.Attach="SomeMethodOnParentVM" />

这将尝试将消息冒泡到控件层次结构中,直到找到合适的处理程序。请注意,如果找不到处理程序,这将引发异常。我记得有一个选项可以在绑定上关闭此功能,但您可能需要查看文档(我目前正在通过我的手机贡献:-)

编辑:

好的,如果您想了解更多幕后信息,最好的检查位置就是源。作者 Rob Eisenberg 提到源代码很小(我认为大约有 2700 行代码),因此很容易检查并且很容易记住

值得阅读 CodePlex 网站上的所有文档(有相当多的页面,但它们对所有内容进行了足够详细的解释,以便您将其余部分拼凑在一起)。

Message不确定您对包含附加属性的类了解多少,Attach但这是在Name不使用标准控件约定时启动动作绑定的原因(我假设您了解 WPF/SL 中的附加属性)。ViewModelBinder您可以在课堂上看到标准的命名约定

该类Message看起来像:

http://caliburnmicro.codeplex.com/SourceControl/changeset/view/35582bb2a8dfdd3fcd71a07fa82581ddb93a786f#src/Caliburn.Micro.Silverlight/Message.cs

(是的,它是 Silverlight 源,但这是所有其他版本的基础,它只是一些编译器指令和其他版本中出现的一些附加类,例如 WPF/WinRT)

如果您查看源代码,您会看到设置附加属性时,Parser该类开始解析字符串。解析器实际上解析了几种不同的格式,因此您可以附加到不同的事件和方法,并传递属性,例如

<Button cal:Message.Attach="[Event Click] = [Action SomeButtonWasClicked()]" /> 

或者

<Button cal:Message.Attach="[Event MouseEnter] = [Action MouseEnteredAButton($eventargs)" />

上面您可以看到使用了$eventargs特殊值。有几个开箱即用的特殊值,您也可以编写自己的(查看这个 SO 问题Using MessageBinder.SpecialValues in Windows 8 app not working?用户SpecialValues用来从控件传递水平鼠标位置以供使用在合成器应用程序中)

您还可以传递其他控件的 CM 默认属性,例如

<TextBox x:Name="TextBox1" />
<Button cal:Message.Attach="MouseClicked(TextBox1)" />

其中的TextTextBox1将传递给MouseClickedVM 上的方法。这是在默认约定绑定中指定的TextBox(查看ConventionManager.AddElementConvention和文档)

冒泡通过检查可视化树并尝试绑定到每个级别来工作(发生SetMethodBindingActionMessage课堂上)

它非常简单但有效(它只是用来VisualTreeHelper向上走可视化树,直到找到合适的处理程序)

不确定您可能还需要什么信息:P

于 2013-05-02T20:01:36.040 回答
0

如果您还没有参考System.Windows.Interactivity(与 Blend SDK 一起使用),我真的会推荐它。我想 Caliburn.Micro 项目在没有它的情况下运行,尽管我从未尝试过。当您通过 NuGet 安装 Caliburn.Micro 时,默认情况下会引用它。

System.Windows.Interactivity.Interaction使用以下方法可以正确解决您的问题Caliburn.Micro.ActionMessage

<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"
             xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
             xmlns:cal="http://www.caliburnproject.org"
             mc:Ignorable="d"
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <Button Content="ShowPageTwo">
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="Click">
                    <cal:ActionMessage MethodName="ShowPageTwo" />
                </i:EventTrigger>
            </i:Interaction.Triggers>
        </Button>
    </Grid>
</UserControl>

您可以在此处找到有关操作的更多信息,CodePlex 的官方文档。

动作消息将冒泡到指挥者,如果找不到合适的方法,Exception则抛出。

于 2013-05-02T22:30:42.360 回答