次の方法で共有


ActivityDesignerTheme.BackgroundStyle プロパティ

定義

背景スタイルを取得または設定します。

public:
 virtual property System::Drawing::Drawing2D::LinearGradientMode BackgroundStyle { System::Drawing::Drawing2D::LinearGradientMode get(); void set(System::Drawing::Drawing2D::LinearGradientMode value); };
public virtual System.Drawing.Drawing2D.LinearGradientMode BackgroundStyle { get; set; }
member this.BackgroundStyle : System.Drawing.Drawing2D.LinearGradientMode with get, set
Public Overridable Property BackgroundStyle As LinearGradientMode

プロパティ値

LinearGradientMode

背景スタイルを示す LinearGradientMode

ActivityDesignerTheme クラスを派生させて新しいテーマに適したプロパティを設定することによってカスタム ActivityDesignerTheme を作成する方法の例を、次に示します。

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

ActivityDesigner でテーマを使用するには、ActivityDesignerThemeAttribute クラスに ActivityDesigner を適用します。

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

注釈

背景色の表示方法を取得または設定するには、BackgroundStyle を使用します。 BackgroundStyle は、次の 4 つのモードのいずれかに設定できます。

BackwardDiagonal
右上から左下へのグラデーションを指定します。

ForwardDiagonal
左上から右下へのグラデーションを指定します。

Horizontal
左から右へのグラデーションを指定します。

Vertical
上から下へのグラデーションを指定します。

適用対象