ActivityDesignerTheme.BackColorStart Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la couleur initiale de l'arrière-plan lors de l'utilisation d'un dégradé de couleur sur l'arrière-plan.
public:
virtual property System::Drawing::Color BackColorStart { System::Drawing::Color get(); void set(System::Drawing::Color value); };
[System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.ColorPickerConverter))]
public virtual System.Drawing.Color BackColorStart { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.Design.ColorPickerConverter))>]
member this.BackColorStart : System.Drawing.Color with get, set
Public Overridable Property BackColorStart As Color
Valeur de propriété
Color initial d'arrière-plan.
- Attributs
Exemples
L'exemple suivant montre comment créer un ActivityDesignerTheme personnalisé en dérivant de la classe ActivityDesignerTheme et en définissant les propriétés appropriées pour le nouveau thème.
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
Pour utiliser le thème sur un ActivityDesigner, appliquez le ActivityDesignerThemeAttribute à la classe ActivityDesigner.
[ActivityDesignerTheme(typeof(CustomActivityDesignerTheme))]
public class CustomActivityDesigner2 : ActivityDesigner
<ActivityDesignerTheme(GetType(CustomActivityDesignerTheme))> _
Public Class CustomActivityDesigner2
Inherits ActivityDesigner
Remarques
BackColorStart indique la couleur d'arrière-plan, ou la couleur initiale d'un dégradé d'arrière-plan. Pour utiliser une couleur dégradée d'arrière-plan, définissez les propriétés BackColorStart et BackColorEnd. L'arrière-plan changera progressivement de couleur, passant de la couleur initiale à la couleur de fin.