PanelStyle 類別

定義

代表 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

取得包含 IContainerComponent

(繼承來源 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

取得或設定 ComponentISite

(繼承來源 Component)
ViewState

取得保存樣式項目的狀態包。

(繼承來源 Style)
Width

取得或設定 Web 伺服器控制項的寬度。

(繼承來源 Style)
Wrap

取得或設定值,指示面板中的內容是否換行。

方法

AddAttributesToRender(HtmlTextWriter)

將需要呈現的 HTML 屬性和樣式加入至指定的 HtmlTextWriter 中。 這個方法主要由控制項開發人員使用。

(繼承來源 Style)
AddAttributesToRender(HtmlTextWriter, WebControl)

將需要呈現的 HTML 屬性和樣式加入至指定的 HtmlTextWriter 和 Web 伺服器控制項中。 這個方法主要由控制項開發人員使用。

(繼承來源 Style)
CopyFrom(Style)

Style 類別目前的執行個體,複製指定的 PanelStyle 物件的樣式屬性。

CreateObjRef(Type)

建立包含所有相關資訊的物件,這些資訊是產生用來與遠端物件通訊的所需 Proxy。

(繼承來源 MarshalByRefObject)
Dispose()

釋放 Component 所使用的所有資源。

(繼承來源 Component)
Dispose(Boolean)

釋放 Component 所使用的 Unmanaged 資源,並選擇性地釋放 Managed 資源。

(繼承來源 Component)
Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
FillStyleAttributes(CssStyleCollection, IUrlResolutionService)

將指定物件的樣式屬性加入 CssStyleCollection 物件中。

(繼承來源 Style)
GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetLifetimeService()
已淘汰.

擷取控制這個執行個體存留期 (Lifetime) 原則的目前存留期服務物件。

(繼承來源 MarshalByRefObject)
GetService(Type)

傳回表示 Component 或其 Container 所提供之服務的物件。

(繼承來源 Component)
GetStyleAttributes(IUrlResolutionService)

擷取指定 CssStyleCollection 實作物件的 IUrlResolutionService 物件。

(繼承來源 Style)
GetType()

取得目前執行個體的 Type

(繼承來源 Object)
InitializeLifetimeService()
已淘汰.

取得存留期服務物件,以控制這個執行個體的存留期原則。

(繼承來源 MarshalByRefObject)
LoadViewState(Object)

載入先前儲存的狀態。

(繼承來源 Style)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
MemberwiseClone(Boolean)

建立目前 MarshalByRefObject 物件的淺層複本。

(繼承來源 MarshalByRefObject)
MergeWith(Style)

將指定 Style 物件的樣式設定與 PanelStyle 類別目前的執行個體結合。

Reset()

PanelStyle 類別移除任何已定義的樣式設定。

SaveViewState()

保護的 (Protected) 方法。 儲存叫用 TrackViewState() 方法之後,任何已變更的狀態。

(繼承來源 Style)
SetBit(Int32)

保護的內部方法。 設定內部位元遮罩欄位,表示儲存在狀態包中的樣式屬性。

(繼承來源 Style)
SetDirty()

標記 Style,以便將其狀態記錄在檢視狀態中。

(繼承來源 Style)
ToString()

傳回代表目前物件的字串。

(繼承來源 Style)
TrackViewState()

保護的 (Protected) 方法。 在控制項上標記追蹤狀態變更的開頭。 任何在追蹤開始後的變更都會被追蹤,並儲存成控制項檢視狀態的一部分。

(繼承來源 Style)

事件

Disposed

Dispose() 方法的呼叫處置元件時,就會發生。

(繼承來源 Component)

明確介面實作

IStateManager.IsTrackingViewState

取得值,指出伺服器控制項是否正在追蹤其檢視狀態變更。

(繼承來源 Style)
IStateManager.LoadViewState(Object)

載入先前儲存的狀態。

(繼承來源 Style)
IStateManager.SaveViewState()

傳回包含狀態變更的物件。

(繼承來源 Style)
IStateManager.TrackViewState()

啟動追蹤狀態的變更。

(繼承來源 Style)

適用於

另請參閱