PanelStyle.BackImageUrl 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
패널 컨트롤의 배경 이미지 URL을 가져오거나 설정합니다.
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
속성 값
패널 컨트롤의 배경 이미지 URL입니다. 기본값은 빈 문자열("")입니다.
예외
BackImageUrl 속성은 null
입니다.
예제
다음 코드 예제에서는 두 개의 패널 컨트롤과 같은 배경 이미지를 적용할 Panel1
고 Panel2
입니다. 제대로 작동 하려면이 예제에서는 사용자 고유의 이미지를 제공 해야 합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 PanelStyle 클래스입니다.
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
설명
BackImageUrl 속성 패널 컨트롤의 배경 이미지의 URL을 지정 합니다. 이 속성을 사용 하려면 이미지 파일을 지정된 된 위치에 존재 해야 합니다. 지정된 된 이미지 파일에 액세스할 수 없는 경우에 배경 이미지 없이 패널 컨트롤 표시 됩니다.