Partager via


SimpleShape.BackStyle, propriété

Obtient ou définit la transparence de la forme.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
<BrowsableAttribute(True)> _
Public Property BackStyle As BackStyle
[BrowsableAttribute(true)]
public BackStyle BackStyle { get; set; }
[BrowsableAttribute(true)]
public:
property BackStyle BackStyle {
    BackStyle get ();
    void set (BackStyle value);
}
[<BrowsableAttribute(true)>]
member BackStyle : BackStyle with get, set
function get BackStyle () : BackStyle 
function set BackStyle (value : BackStyle)

Valeur de propriété

Type : Microsoft.VisualBasic.PowerPacks.BackStyle
L'une des valeurs de BackStyle (Opaque ou Transparent).La valeur par défaut est Transparent.

Notes

Lors de la BackStyle est définie sur Transparent (par défaut), le BackColor propriété n'a aucun effet.

Définition de la BackgroundImage ou FillStyle propriété remplace le paramètre de BackStyle.

Exemples

L'exemple suivant montre comment utiliser le BackStyle propriété pour basculer entre une forme opaque et transparente. Cet exemple suppose que vous avez une OvalShape OvalShape1 contrôle sur un formulaire.

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    ' Change between transparent and opaque. 
    If OvalShape1.BackStyle = PowerPacks.BackStyle.Transparent Then
        OvalShape1.BackStyle = PowerPacks.BackStyle.Opaque
        OvalShape1.BackColor = Color.LimeGreen
    Else
        OvalShape1.BackStyle = PowerPacks.BackStyle.Transparent
    End If 
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    // Change between transparent and opaque. 
    if (ovalShape1.BackStyle == BackStyle.Transparent)
    {
        ovalShape1.BackStyle = BackStyle.Opaque;
        ovalShape1.BackColor = Color.LimeGreen;
    }
    else
    {
        ovalShape1.BackStyle = BackStyle.Transparent;
    }
}

Sécurité .NET Framework

Voir aussi

Référence

SimpleShape Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

Autres ressources

Introduction aux contrôles Line et Shape (Visual Studio)

Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)

Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)