Udostępnij za pośrednictwem


ActivityDesignerTheme.BorderStyle Właściwość

Definicja

Pobiera lub ustawia styl używany dla obramowania.

public:
 virtual property System::Drawing::Drawing2D::DashStyle BorderStyle { System::Drawing::Drawing2D::DashStyle get(); void set(System::Drawing::Drawing2D::DashStyle value); };
[System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.FilteredEnumConverter))]
public virtual System.Drawing.Drawing2D.DashStyle BorderStyle { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.FilteredEnumConverter))>]
member this.BorderStyle : System.Drawing.Drawing2D.DashStyle with get, set
Public Overridable Property BorderStyle As DashStyle

Wartość właściwości

DashStyle Wyliczenie reprezentujące styl używany dla obramowania.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak utworzyć niestandardowy element ActivityDesignerTheme pochodny z ActivityDesignerTheme klasy i ustawić odpowiednie właściwości dla nowego motywu.

public class CustomActivityDesignerTheme : ActivityDesignerTheme
{
    public CustomActivityDesignerTheme(WorkflowTheme theme)
        : base(theme)
    {
        base.Initialize();
        this.BorderStyle = DashStyle.Solid;
        this.BorderColor = Color.FromArgb(0, 0, 0);
        this.BackColorStart = Color.FromArgb(37, 15, 242);
        this.BackColorEnd = Color.FromArgb(189, 184, 254);
        this.BackgroundStyle = LinearGradientMode.Vertical;
        this.ForeColor = Color.Black;
    }
}
Public Class CustomActivityDesignerTheme
    Inherits ActivityDesignerTheme
    Public Sub New(ByVal theme As WorkflowTheme)
        MyBase.new(theme)

        MyBase.Initialize()
        Me.BorderStyle = DashStyle.Solid
        Me.BorderColor = Color.FromArgb(0, 0, 0)
        Me.BackColorStart = Color.FromArgb(37, 15, 242)
        Me.BackColorEnd = Color.FromArgb(189, 184, 254)
        Me.BackgroundStyle = LinearGradientMode.Vertical
        Me.ForeColor = Color.Black
    End Sub
End Class

Aby użyć motywu w obiekcie ActivityDesigner, zastosuj element ActivityDesignerThemeAttribute do ActivityDesigner klasy .

[ActivityDesignerTheme(typeof(CustomActivityDesignerTheme))]
public class CustomActivityDesigner2 : ActivityDesigner
<ActivityDesignerTheme(GetType(CustomActivityDesignerTheme))> _
Public Class CustomActivityDesigner2
    Inherits ActivityDesigner

Uwagi

Jest BorderStyle to styl linii do rysowania obramowań kształtów.

Dotyczy