Condividi tramite


CompositeActivityDesigner.Expanded Proprietà

Definizione

Ottiene o imposta un valore che indica se l'oggetto CompositeActivityDesigner è espanso.

public:
 virtual property bool Expanded { bool get(); void set(bool value); };
public virtual bool Expanded { get; set; }
member this.Expanded : bool with get, set
Public Overridable Property Expanded As Boolean

Valore della proprietà

true se l'oggetto CompositeActivityDesigner è espanso; in caso contrario, false.

Esempio

Nell'esempio di codice seguente viene illustrato come sia possibile impostare la proprietà Expanded in base a un valore Boolean passato come argomento a un metodo.

Questo esempio di codice è parte dell'esempio SDK Workflow Monitor nel file ViewHost.cs. Per altre informazioni, vedere Monitoraggio del flusso di lavoro.

internal void Expand(bool expand)
{
    IDesignerHost host = GetService(typeof(IDesignerHost)) as IDesignerHost;
    if (host == null)
        return;

    this.SuspendLayout();

    CompositeActivity root = host.RootComponent as CompositeActivity;
    foreach (Activity activity in root.Activities)
    {
        CompositeActivityDesigner compositeActivityDesigner = host.GetDesigner((IComponent)activity) as CompositeActivityDesigner;
        if (compositeActivityDesigner != null)
        {
            compositeActivityDesigner.Expanded = expand;
        }
    }

    this.ResumeLayout(true);
}
Friend Sub Expand(ByVal expand As Boolean)
    Dim host As IDesignerHost = GetService(GetType(IDesignerHost))
    If host Is Nothing Then
        Return
    End If

    Me.SuspendLayout()

    Dim root As CompositeActivity = host.RootComponent
    Dim activity As Activity
    For Each activity In root.Activities
        Dim compositeActivityDesigner As CompositeActivityDesigner = host.GetDesigner(CType(activity, IComponent))
        If compositeActivityDesigner IsNot Nothing Then
            compositeActivityDesigner.Expanded = expand
        End If
    Next

    Me.ResumeLayout(True)
End Sub

Commenti

Insieme a OnMouseDown e a ExpandButtonRectangle, utilizzare Expanded per determinare l'azione corretta quando un utente fa clic sul pulsante di espansione e compressione presente nell'oggetto CompositeActivityDesigner.

Si applica a

Vedi anche