gpt4 book ai didi

wpf - 从 ICommand 到达 "command-source"xaml 元素

转载 作者:行者123 更新时间:2023-12-04 13:38:57 24 4
gpt4 key购买 nike

我想在一个单独的类中实现 ICommand,并想从这里访问按钮:

<Grid>
<Button Command="{StaticResource Do}" >Do!</Button>
</Grid>

public class DoCommand : ICommand
{
public void Execute(object parameter)
{
**I need to access a xaml that triggered this command from here**
}

public bool CanExecute(object parameter)
{
return true;
}

public event EventHandler CanExecuteChanged;
}

我怎么能那样做?
谢谢。

最佳答案

您可以将按钮作为 XAML 中的参数传递,如下所示:

<Button Command="{StaticResource Do}" CommandParameter="{Binding RelativeSource={RelativeSource Mode=Self}, BindsDirectlyToSource=True}" >Do!</Button>

然后在 Execute 方法中:

公共(public)无效执行(对象参数)
{
Button button = 参数为 Button;
}

关于wpf - 从 ICommand 到达 "command-source"xaml 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8967114/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com