带参数的 RoutedCommand

发布于 2024-12-14 04:29:10 字数 459 浏览 4 评论 0原文

我正在使用 RoutedCommand,并且在查找如何传递参数以便我的 Executed 方法将其包含在 e.Parameter 中时遇到问题?

我的 RoutedCommand:

public static readonly RoutedCommand Foo = new RoutedCommand();

用法:

menuItem.Command = Commands.Foo;

执行:

private void Foo_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            object parameter = e.Parameter; // this is always null
        }

I'm playing around with RoutedCommand, and I'm having an issue with finding how can I pass a parameter so that my Executed method will have it in e.Parameter ?

My RoutedCommand:

public static readonly RoutedCommand Foo = new RoutedCommand();

Usage:

menuItem.Command = Commands.Foo;

Executed:

private void Foo_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            object parameter = e.Parameter; // this is always null
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽容 2024-12-21 04:29:10

您的参数始终为 null 因为您从未在任何地方设置它

您可以使用 CommandParameter 属性设置它

menuItem.Command = Commands.Foo;
menuItem.CommandParameter = "Bar";

You're parameter is always null because you never set it anywhere

You can set it using the CommandParameter property

menuItem.Command = Commands.Foo;
menuItem.CommandParameter = "Bar";
季末如歌 2024-12-21 04:29:10

您应该使用 MenuItem.CommandParameter

例如,您可以设置绑定到某个属性,从中传递参数。

You should use MenuItem.CommandParameter.

For example, you could set binding to some property, from which parameter is delivered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文