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);  

適用対象