PanelStyle.BackImageUrl Proprietà

Definizione

Ottiene o imposta l'URL dell'immagine di sfondo per il controllo pannello.

public:
 virtual property System::String ^ BackImageUrl { System::String ^ get(); void set(System::String ^ value); };
public virtual string BackImageUrl { get; set; }
member this.BackImageUrl : string with get, set
Public Overridable Property BackImageUrl As String

Valore della proprietà

URL dell'immagine di sfondo per il controllo pannello. Il valore predefinito è una stringa vuota ("").

Eccezioni

La proprietà BackImageUrl è null.

Esempio

L'esempio di codice seguente applica la stessa immagine di sfondo a due controlli Panel1 del pannello e Panel2. Per il corretto funzionamento di questo esempio, è necessario fornire un'immagine personalizzata. Questo esempio di codice fa parte di un esempio più grande fornito per la PanelStyle classe.

public partial class PanelStylecs_aspx : Page
{
    void Page_Load(object sender, EventArgs e)
    {
        StateBag panelState = new StateBag();
        PanelStyle myPanelStyle = new PanelStyle(panelState);
        
        // Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center;
        myPanelStyle.ScrollBars = ScrollBars.Both;
        myPanelStyle.Wrap = false;
        myPanelStyle.Direction = ContentDirection.LeftToRight;
        myPanelStyle.BackImageUrl = @"~\images\picture.jpg";

        // Use the ApplyStyle method of the Panel control to apply
        // the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle);
        Panel2.ApplyStyle(myPanelStyle); 
    }
}
Partial Class PanelStylevb_aspx
    Inherits Page

    Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

        Dim panelState As StateBag = New StateBag()
        Dim myPanelStyle As PanelStyle = New PanelStyle(panelState)

        ' Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center
        myPanelStyle.ScrollBars = ScrollBars.Both
        myPanelStyle.Wrap = False
        myPanelStyle.Direction = ContentDirection.LeftToRight
        myPanelStyle.BackImageUrl = "~\images\picture.jpg"

        ' Use the ApplyStyle method of the Panel control to apply
        ' the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle)
        Panel2.ApplyStyle(myPanelStyle)
        
    End Sub

End Class

Commenti

La BackImageUrl proprietà specifica l'URL dell'immagine di sfondo per il controllo del pannello. Per il funzionamento di questa proprietà, è necessario che un file di immagine esista nel percorso specificato. Se il file di immagine specificato non è accessibile, il controllo del pannello viene visualizzato senza un'immagine di sfondo.

Si applica a