VisualStyleElement.ScrollBar.SizeBox.LeftAlign 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 un élément de style visuel qui représente une poignée de redimensionnement qui est alignée à gauche.
public:
static property System::Windows::Forms::VisualStyles::VisualStyleElement ^ LeftAlign { System::Windows::Forms::VisualStyles::VisualStyleElement ^ get(); };
public static System.Windows.Forms.VisualStyles.VisualStyleElement LeftAlign { get; }
static member LeftAlign : System.Windows.Forms.VisualStyles.VisualStyleElement
Public Shared ReadOnly Property LeftAlign As VisualStyleElement
Valeur de propriété
VisualStyleElement qui représente une poignée de redimensionnement qui est alignée à gauche.
Exemples
L’exemple de code suivant montre comment créer un VisualStyleRenderer avec le VisualStyleElement retourné par la LeftAlign propriété . Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la DrawVisualStyleElementScrollBarSizeBox2
méthode à partir de la Paint méthode de gestion des événements, en passant e
comme PaintEventArgs.
public void DrawVisualStyleElementScrollBarSizeBox2(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.ScrollBar.SizeBox.LeftAlign))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.ScrollBar.SizeBox.LeftAlign);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.ScrollBar.SizeBox.LeftAlign",
this.Font, Brushes.Black, new Point(10, 10));
}
else
e.Graphics.DrawString("This element is not defined in the current visual style.",
this.Font, Brushes.Black, new Point(10, 10));
}
Public Sub DrawVisualStyleElementScrollBarSizeBox2(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.ScrollBar.SizeBox.LeftAlign)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.ScrollBar.SizeBox.LeftAlign)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.ScrollBar.SizeBox.LeftAlign", _
Me.Font, Brushes.Black, New Point(10, 10))
Else
e.Graphics.DrawString("This element is not defined in the current visual style.", _
Me.Font, Brushes.Black, New Point(10, 10))
End If
End Sub
Remarques
Vous pouvez utiliser le VisualStyleElement retourné par la LeftAlign propriété pour créer un VisualStyleRenderer.