相当于 c# 中的低于 xaml
本文关键字:xaml 相当于 | 更新日期: 2023-09-27 18:31:32
我的基础设施项目中有一个名为NavigateCommand的复合命令。我使用下面提到的 XAML 将参数传递给方法:
Command="{x:Static inf:ApplicationCommands.NavigateCommand}"
CommandParameter="{Binding ListSourcePage}"
现在,我想使用 C# 做同样的事情。我该怎么做?
假设下面的代码在声明ListSourcePage
属性的类中:
if (ApplicationCommands.NavigateCommand.CanExecute(ListSourcePage))
{
ApplicationCommands.NavigateCommand.Execute(ListSourcePage);
}