如何在wpf中加载窗口时触发命令

时间:2010-08-04 17:25:39

标签: wpf mvvm commandbinding delegatecommand

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

4 个答案:

答案 0 :(得分:18)

为了避免View上的代码,请使用Interactivity库(System.Windows.Interactivity dll,您可以从Microsoft免费下载 - 也包含Expression Blend)。

然后,您可以创建执行命令的行为。这样,Trigger调用调用Command的行为。

<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);            
    }
}

答案 1 :(得分:7)

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
       ApplicationCommands.New.Execute(null, targetElement); 
       // or this.CommandBindings[0].Command.Execute(null); 
    }

和xaml

    Loaded="Window_Loaded"

答案 2 :(得分: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"
/>

答案 3 :(得分:0)

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

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>