Compartir a través de


DesignerView.ToggleArgumentDesignerCommand Campo

Definición

El comando que se usa para mostrar u ocultar el diseñador de argumentos. Al hacer clic en el Arguments botón de la superficie diseñador de flujos de trabajo de Windows, se inicia esta acción.

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 

Valor de campo

Ejemplos

El ejemplo de código siguiente muestra cómo enlazar esta propiedad con un botón.

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

En el siguiente ejemplo de código se muestra cómo invocar esta propiedad en C#.

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

Se aplica a