11

是否可以触发命令来通知窗口已加载。另外,我没有使用任何 MVVM 框架(从某种意义上说,框架,Caliburn,Onxy,MVVM Toolkit 等,)

4

4 回答 4

18

为避免 View 出现代码滞后,请使用 Interactivity 库(System.Windows.Interactivity dll,您可以从 Microsoft 免费下载 - 也随 Expression Blend 提供)。

然后你可以创建一个执行命令的行为。这样触发器调用调用命令的行为。

<ia:Interaction.Triggers>
    <ia:EventTrigger EventName="Loaded">
        <custombehaviors:CommandAction Command="{Binding ShowMessage}" Parameter="I am loaded"/>
    </ia:EventTrigger>
</ia:Interaction.Triggers>

CommandAction(也使用 System.Windows.Interactivity)看起来像:

public class CommandAction : TriggerAction<UIElement>
{
    public static DependencyProperty CommandProperty = DependencyProperty.Register("Command", typeof(ICommand), typeof(CommandAction), null);
    public ICommand Command
    {
        get
        {
            return (ICommand)GetValue(CommandProperty);
        }
        set
        {
            SetValue(CommandProperty, value);
        }
    }


    public static DependencyProperty ParameterProperty = DependencyProperty.Register("Parameter", typeof(object), typeof(CommandAction), null);
    public object Parameter
    {
        get
        {
            return GetValue(ParameterProperty);
        }
        set
        {
            SetValue(ParameterProperty, value);

        }
    }

    protected override void Invoke(object parameter)
    {
        Command.Execute(Parameter);            
    }
}
于 2010-08-04T21:03:17.490 回答
7
    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
       ApplicationCommands.New.Execute(null, targetElement); 
       // or this.CommandBindings[0].Command.Execute(null); 
    }

和 xml

    Loaded="Window_Loaded"
于 2010-08-04T17:37:44.413 回答
2

AttachedCommandBehavior V2 aka ACB提出了一种更通用的使用行为方式,它甚至支持多个事件到命令的绑定,

这是一个非常基本的使用示例:

<Window x:Class="Example.YourWindow"
        xmlns:local="clr-namespace:AttachedCommandBehavior;assembly=AttachedCommandBehavior"
        local:CommandBehavior.Event="Loaded"
        local:CommandBehavior.Command="{Binding DoSomethingWhenWindowIsLoaded}"
        local:CommandBehavior.CommandParameter="Some information"
/>
于 2012-12-12T12:44:52.593 回答
1

这现在更容易做到。只需包含以下命名空间:

xmlns:i="http://schemas.microsoft.com/xaml/behaviors"

并像这样利用它:

<i:Interaction.Triggers>
    <i:EventTrigger EventName="Loaded">
        <i:InvokeCommandAction Command="{Binding CommandInViewModel}"/>
    </i:EventTrigger>
</i:Interaction.Triggers>
于 2020-08-28T15:40:19.117 回答