Sdílet prostřednictvím


CompositeDesignerTheme.ShowDropShadow Vlastnost

Definice

Získá nebo nastaví hodnotu označující, zda bude motiv složeného návrháře zobrazovat stíny kolem návrháře složených aktivit.

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

Hodnota vlastnosti

truepokud se zobrazí CompositeDesignerTheme stíny kolem CompositeActivityDesigner. V opačném případě . false Výchozí formát je false.

Příklady

Následující příklad ukazuje, jak vytvořit vlastní CompositeDesignerTheme odvození od CompositeDesignerTheme třídy a nastavení odpovídajících vlastností pro nový motiv.

public class ParallelIfTheme : CompositeDesignerTheme
{
    public ParallelIfTheme(WorkflowTheme theme)
        : base(theme)
    {
        this.ShowDropShadow = true;
        this.ConnectorStartCap = LineAnchor.None;
        this.ConnectorEndCap = LineAnchor.None;
        this.BorderStyle = DashStyle.Dash;
        this.WatermarkImagePath = @"parallelIfWatermark.png";
        this.WatermarkAlignment = DesignerContentAlignment.Fill;
    }
}
Public Class ParallelIfTheme
    Inherits CompositeDesignerTheme

    Public Sub New(ByVal theme As WorkflowTheme)
        MyBase.new(theme)

        Me.ShowDropShadow = True
        Me.ConnectorStartCap = LineAnchor.None
        Me.ConnectorEndCap = LineAnchor.None
        Me.BorderStyle = DashStyle.Dash
        Me.WatermarkImagePath = "parallelIfWatermark.png"
        Me.WatermarkAlignment = DesignerContentAlignment.Fill
    End Sub
End Class

Chcete-li použít motiv na CompositeActivityDesigner, použijte na ActivityDesignerThemeAttributeCompositeActivityDesigner třídu .

[ActivityDesignerTheme(typeof(ParallelIfTheme))]
public class ParallelIfDesigner : ParallelActivityDesigner
<ActivityDesignerTheme(GetType(ParallelIfTheme))> _
Public Class ParallelIfDesigner
    Inherits ParallelActivityDesigner

Platí pro