Condividi tramite


Proprietà SimpleShape.BackgroundImage

Ottiene o imposta l'immagine visualizzata nella forma.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
<BrowsableAttribute(True)> _
Public Property BackgroundImage As Image
[BrowsableAttribute(true)]
public Image BackgroundImage { get; set; }
[BrowsableAttribute(true)]
public:
property Image^ BackgroundImage {
    Image^ get ();
    void set (Image^ value);
}
[<BrowsableAttribute(true)>]
member BackgroundImage : Image with get, set
function get BackgroundImage () : Image
function set BackgroundImage (value : Image)

Valore proprietà

Tipo: System.Drawing.Image
Image che rappresenta l'immagine da visualizzare in background della forma.

Note

utilizzare BackgroundImage proprietà per inserire un'immagine grafica su una forma.

[!NOTA]

impostare BackgroundImage la proprietà esegue l'override di qualsiasi impostazione per BackColor, BackStyle, FillColor, FillGradientColor, FillGradientStylee FillStyle proprietà.

Note per gli eredi

Quando si sottopone a override BackgroundImage la proprietà di una classe derivata, utilizzare BackgroundImage proprietà della classe base per estendere l'implementazione di base.In caso contrario, è necessario fornire qualsiasi implementazione.Non è necessario eseguire l'override delle funzioni di accesso get e set di BackgroundImage proprietà; è possibile eseguire l'override solo se necessario.

Esempi

Nell'esempio seguente viene illustrato come utilizzare BackgroundImage e BackgroundImageLayout proprietà per visualizzare un'immagine in una forma.Questo esempio presuppone che l'utente abbia OvalShape controllare OvalShape1 denominato in un form e che il progetto contiene una risorsa immagine denominata Image1.

Private Sub Form1_Load() Handles MyBase.Load
    ' Assign an image resource.
    OvalShape1.BackgroundImage = My.Resources.Image1
    ' Resize the image to fit the oval.
    OvalShape1.BackgroundImageLayout = ImageLayout.Stretch
End Sub
private void form1_Load(System.Object sender, System.EventArgs e)
{
    // Assign an image resource.
    ovalShape1.BackgroundImage = SimpleShapeBackGroundImageCS.Properties.Resources.Image1;
    // Resize the image to fit the oval.
    ovalShape1.BackgroundImageLayout = ImageLayout.Stretch;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

SimpleShape Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Introduzione ai controlli Line e Shape (Visual Studio)

Procedura: disegnare linee con il controllo LineShape (Visual Studio)

Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)

Procedura: aggiungere immagini di sfondo a un Windows Form