Udostępnij za pośrednictwem


DesignerView.ToggleArgumentDesignerCommand Pole

Definicja

Polecenie używane do pokazywania lub ukrywania projektanta argumentów. Kliknięcie przycisku na powierzchni Projektanta przepływu pracy systemu Windows inicjuje Arguments tę akcję.

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 

Wartość pola

Przykłady

W poniższym przykładzie kodu pokazano, jak powiązać tę właściwość z przyciskiem.

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

Poniższy przykładowy kod pokazuje, jak wywołać tę właściwość w języku C#.

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

Dotyczy