如何使用InvokeCommandAction调用我的方法并传入参数?

本文关键字:参数 方法 何使用 InvokeCommandAction 调用 我的 | 更新日期: 2023-09-27 17:51:03

我一直在试图找出如何从Loaded=""事件传递参数。我在这里问了一个问题:如何在Loaded="上传递参数?"?并被引导到InvokeCommandAction的方向。

问题是我无法弄清楚如何实际使用InvokeCommandAction调用我的方法。我的XAML:

        <Expander x:Name="Greeting_And_Opening_Expander" ExpandDirection="Down" IsExpanded="True" FontSize="14" FontWeight="Bold" Margin="5" BorderThickness="1" BorderBrush="#FF3E3D3D">
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="Loaded">
                    <i:InvokeCommandAction Command="{Binding ExpanderLoaded}"
                                           CommandParameter="x:Static local:Sections.Opening"/>
                </i:EventTrigger>
            </i:Interaction.Triggers>

我在后面的代码中有一个名为ExpanderLoaded的方法,如下所示:

    private void ExpanderLoaded(object sender, RoutedEventArgs e, Sections section)
    {
        //Do Stuff
    }

和同一个命名空间下的Enum:

public enum Sections
{
    Default = 0,
    Opening = 1,
    Verify = 2
}

我需要做什么来调用我的方法使用XAML我上面张贴?我对WPF非常陌生,所以如果我最后问了一些看起来很愚蠢的问题,请尽量容忍我。我在stackoverflow上浏览了其他类似的问题,但无法找到足够的信息来继续我自己的工作。

如何使用InvokeCommandAction调用我的方法并传入参数?

命令绑定需要一个实现命令接口的具体实例。您正在绑定到一个方法名,它根本不会真正绑定。命令绑定意味着在MVVM设计中的ViewModel类中使用,但从您的示例代码来看,您似乎在Xaml视图的代码后面使用它。如果你想坚持代码隐藏,只需使用事件处理程序。

有很多关于ICommand实现的例子,你也可以使用Prism中现成的DelegateCommand。我在下面展示了一个简单的例子,它实现了一个非常基本的iccommand,只要你的View和ViewModel连接起来,它就可以为你想做的事情工作。

    //Very basic ICommand implementation    
    public class RelayCommand : ICommand
    {
        private Action<object> command;
        private Func<bool> canExecute;
        public RelayCommand(Action<object> commandAction, Func<bool> canExecute = null)
        {
            this.command = commandAction;
            this.canExecute = canExecute;
        }
        /// <summary>
        /// Returns default true. 
        /// Customize to implement can execute logic.
        /// </summary>
        public bool CanExecute(object parameter)
        {
            return this.canExecute == null ? true : this.canExecute();
        }
        /// <summary>
        /// Implement changed logic if needed
        /// </summary>
        public event EventHandler CanExecuteChanged;

        public void Execute(object parameter)
        {            
            if (this.command != null)
            {
                this.command(parameter);
            }
        }
    }
    //Example of a view model
    public class MyViewModel
    {
        public MyViewModel()
        {
            this.ExpanderCommand = new RelayCommand(this.ExecuteExpanderCommand);
        }
        // This property will be the command binding target
        public RelayCommand ExpanderCommand { get; set; }
        // this is the handler method
        public void ExecuteExpanderCommand(object parameter)
        {
            var section = (Sections)parameter;
            //do your stuff here
        }
    }
Xaml绑定:

<i:EventTrigger EventName="Loaded">
 <i:InvokeCommandAction Command="{Binding ExpanderCommand}"
                                               CommandParameter="x:Static local:Sections.Opening"/>
</i:EventTrigger>