ActivityDesignerTheme.BorderStyle Propriedade
Definição
Obtém ou define o estilo usado para a borda.Gets or sets the style used for the border.
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
Valor da propriedade
Uma DashStyle enumeração que representa o estilo usado para a borda.A DashStyle enumeration that represents the style used for the border.
- Atributos
Exemplos
O exemplo a seguir mostra como criar um personalizado ActivityDesignerTheme derivando da ActivityDesignerTheme classe e definindo as propriedades apropriadas para o novo tema.The following example shows how to create a custom ActivityDesignerTheme by deriving from the ActivityDesignerTheme class and setting the appropriate properties for the new theme.
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
Para usar o tema em um ActivityDesigner , aplique o ActivityDesignerThemeAttribute à ActivityDesigner classe.To use the theme on an ActivityDesigner, apply the ActivityDesignerThemeAttribute to the ActivityDesigner class.
[ActivityDesignerTheme(typeof(CustomActivityDesignerTheme))]
public class CustomActivityDesigner2 : ActivityDesigner
<ActivityDesignerTheme(GetType(CustomActivityDesignerTheme))> _
Public Class CustomActivityDesigner2
Inherits ActivityDesigner
Comentários
O BorderStyle é o estilo de linha a ser desenhado para bordas de formas.The BorderStyle is the style of line to draw for borders of shapes.