Condividi tramite


CompositeDesignerTheme.ShowDropShadow Proprietà

Definizione

Ottiene o imposta un valore che indica se il tema della finestra di progettazione composita visualizzerà ombreggiature attorno al CompositeActivityDesigner.

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

Valore della proprietà

true se CompositeDesignerTheme visualizza ombreggiature attorno all'oggetto CompositeActivityDesigner. In caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene illustrato come creare un CompositeDesignerTheme personalizzato derivandolo dalla classe CompositeDesignerTheme e impostando le proprietà appropriate per il nuovo tema.

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

Per utilizzare il tema in un oggetto della classe CompositeActivityDesigner, applicare l'attributo ActivityDesignerThemeAttribute alla classe CompositeActivityDesigner.

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

Si applica a