DesignerView.ToggleArgumentDesignerCommand 字段

定义

用于显示或隐藏自变量设计器的命令。 Arguments单击 Windows 工作流设计器图面上的按钮将启动此操作。

public: static initonly System::Windows::Input::ICommand ^ ToggleArgumentDesignerCommand;
public static readonly System.Windows.Input.ICommand ToggleArgumentDesignerCommand;
 staticval mutable ToggleArgumentDesignerCommand : System.Windows.Input.ICommand
Public Shared ReadOnly ToggleArgumentDesignerCommand As ICommand 

字段值

示例

下面的代码示例演示如何将此属性绑定到按钮。

<Button xmlns:sapv="clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation" Command="sapv:DesignerView.ToggleArgumentDesignerCommand">Show/Hide Arguments</Button>  

下面的代码示例演示如何在 C# 中调用此属性。

DesignerView dView = des.Context.Services.GetService<DesignerView>();  
((RoutedCommand)DesignerView.ToggleArgumentDesignerCommand).Execute(null, dView);  

适用于