ActivityDesignerTheme.BackgroundStyle 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 le style d'arrière-plan.
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
Valeur de propriété
LinearGradientMode qui décrit le style d'arrière-plan.
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
Utilisez BackgroundStyle pour obtenir ou définir comment l'arrière-plan affiche la couleur. Le BackgroundStyle peut être défini à l'un des quatre modes suivants :
BackwardDiagonal
Spécifie un dégradé du haut à droite vers le bas à gauche.
ForwardDiagonal
Spécifie un dégradé du haut à gauche vers le bas à droite.
Horizontal
Spécifie un dégradé de gauche à droite.
Vertical
Spécifie un dégradé du haut vers le bas.