PanelStyle 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
代表 Panel 控制項的樣式。
public ref class PanelStyle : System::Web::UI::WebControls::Style
public class PanelStyle : System.Web.UI.WebControls.Style
type PanelStyle = class
inherit Style
Public Class PanelStyle
Inherits Style
- 繼承
範例
下列程式碼範例示範如何建立 PanelStyle 物件並設定其屬性。 此範例有兩個部分:
部分類別 PanelStylecs_aspx
,示範如何建立新的 PanelStyle 物件並設定其屬性。
使用範例作為程式碼後置檔案的 Web Form 頁面 PanelStylecs_aspx
。
此範例的第一個部分示範如何建立 PanelStyle 物件 、 myPanelStyle
,以及設定其屬性。 然後會 ApplyStyle 針對 Panel1
面板和 Panel2
面板呼叫 方法,並 myPanelStyle
套用至這兩者。
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
此範例的第二個部分會顯示與上一個範例搭配使用的 .aspx 檔案。
<%@ Page Language="C#" CodeFile="PanelStyle.cs" Inherits="PanelStylecs_aspx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>PanelStyle Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>PanelStyle Example</h3>
<asp:Panel id="Panel1"
runat="server"
width="150"
height="50">
This is the Panel1 panel control.
</asp:Panel>
<br /><br />
<asp:Panel id="Panel2"
runat="server"
width="150"
height="50">
This is the Panel2 panel control.
</asp:Panel>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="true" CodeFile="PanelStyle.vb" Inherits="PanelStylevb_aspx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>PanelStyle Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>PanelStyle Example</h3>
<asp:Panel id="Panel1"
runat="server"
width="150"
height="50">
This is the Panel1 panel control.
</asp:Panel>
<br /><br />
<asp:Panel id="Panel2"
runat="server"
width="150"
height="50">
This is the Panel2 panel control.
</asp:Panel>
</form>
</body>
</html>
備註
類別 PanelStyle 是用來表示面板控制項的樣式設定。 它會封裝控制台外觀的屬性,並可以套用至多個面板控制項,以提供常見的外觀。
您可以藉由設定 BackImageUrl 屬性,指定要在面板背景中顯示的影像。 面板內容的水準對齊方式是由 HorizontalAlign 屬性工作表示。 您可以藉由設定 屬性來指定包含面板控制項內文字的 Direction 控制項方向。
建構函式
PanelStyle(StateBag) |
初始化 PanelStyle 類別的新執行個體。 |
屬性
BackColor |
取得或設定 Web 伺服器控制項的背景色彩。 (繼承來源 Style) |
BackImageUrl |
取得或設定面板控制項背景影像的 URL。 |
BorderColor |
取得或設定 Web 伺服器控制項的框線色彩。 (繼承來源 Style) |
BorderStyle |
取得或設定 Web 伺服器控制項的框線樣式。 (繼承來源 Style) |
BorderWidth |
取得或設定 Web 伺服器控制項的框線寬度。 (繼承來源 Style) |
CanRaiseEvents |
取得值,指出元件是否能引發事件。 (繼承來源 Component) |
Container |
取得包含 IContainer 的 Component。 (繼承來源 Component) |
CssClass |
取得或設定用戶端上 Web 伺服器控制項所呈現的階層式樣式表 (CSS)。 (繼承來源 Style) |
DesignMode |
取得值,指出 Component 目前是否處於設計模式。 (繼承來源 Component) |
Direction |
取得或設定在面板控制項中包含文字的控制項之顯示方向。 |
Events |
取得附加在這個 Component 上的事件處理常式清單。 (繼承來源 Component) |
Font |
取得與 Web 伺服器控制項關聯的字型屬性。 (繼承來源 Style) |
ForeColor |
取得或設定 Web 伺服器控制項的前景色彩 (通常是文字的色彩)。 (繼承來源 Style) |
Height |
取得或設定 Web 伺服器控制項的高度。 (繼承來源 Style) |
HorizontalAlign |
取得或設定在面板控制項中內容的水平對齊。 |
IsEmpty |
保護的 (Protected) 屬性。 取得值,指出狀態包中是否已定義任何樣式項目。 (繼承來源 Style) |
IsTrackingViewState |
傳回值,指出是否任何的樣式項目都已經在狀態包中定義。 (繼承來源 Style) |
RegisteredCssClass |
取得使用控制項註冊的階層式樣式表 (CSS) 類別。 (繼承來源 Style) |
ScrollBars |
取得或設定在面板控制項中捲軸的可視性和位置。 |
Site | (繼承來源 Component) |
ViewState |
取得保存樣式項目的狀態包。 (繼承來源 Style) |
Width |
取得或設定 Web 伺服器控制項的寬度。 (繼承來源 Style) |
Wrap |
取得或設定值,指示面板中的內容是否換行。 |
方法
事件
Disposed |
當 Dispose() 方法的呼叫處置元件時,就會發生。 (繼承來源 Component) |
明確介面實作
IStateManager.IsTrackingViewState |
取得值,指出伺服器控制項是否正在追蹤其檢視狀態變更。 (繼承來源 Style) |
IStateManager.LoadViewState(Object) |
載入先前儲存的狀態。 (繼承來源 Style) |
IStateManager.SaveViewState() |
傳回包含狀態變更的物件。 (繼承來源 Style) |
IStateManager.TrackViewState() |
啟動追蹤狀態的變更。 (繼承來源 Style) |