共用方式為


WebPartZoneBase.EditVerb 屬性

定義

取得 WebPartVerb 物件的參考,這個物件可讓使用者編輯區域中的 WebPart 控制項。

public:
 virtual property System::Web::UI::WebControls::WebParts::WebPartVerb ^ EditVerb { System::Web::UI::WebControls::WebParts::WebPartVerb ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public virtual System.Web.UI.WebControls.WebParts.WebPartVerb EditVerb { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.EditVerb : System.Web.UI.WebControls.WebParts.WebPartVerb
Public Overridable ReadOnly Property EditVerb As WebPartVerb

屬性值

WebPartVerb,可讓使用者編輯 WebPart 控制項。

屬性

範例

下列程式代碼範例示範 控件上 WebPartZone 屬性的EditVerb宣告式用法。 請注意,屬性是使用 具有控件的 <EditVerb>WebPartZone1 元素,以宣告方式存取。 編輯動詞會在編輯模式中出現在此控件上,即使您未在這裡使用 <EditVerb> 元素,但使用此命令,您可以設定一些屬性,例如在使用者介面中代表動詞的文字, (UI) 。 如需完整的程式代碼範例,包括程式代碼後置原始程序檔和包含此程式代碼中區域的 .aspx 頁面,請參閱 WebPartZoneBase 類別概觀。

<asp:WebPartZone 
  ID="WebPartZone1" 
  Runat="server"
  LayoutOrientation="Vertical" >
  <EditVerb Text="Edit WebPart" />
  <SelectedPartChromeStyle BackColor="LightBlue" />
  <ZoneTemplate>
    <asp:BulletedList 
      ID="BulletedList1" 
      Runat="server"
      DisplayMode="HyperLink" 
      Title="Favorite Links" >
      <asp:ListItem Value="http://msdn.microsoft.com">
        MSDN
      </asp:ListItem>
      <asp:ListItem Value="http://www.asp.net">
        ASP.NET
      </asp:ListItem>
      <asp:ListItem Value="http://www.msn.com">
        MSN
      </asp:ListItem>
    </asp:BulletedList>
    <asp:Calendar ID="Calendar1" Runat="server" 
      Title="My Calendar" />
  </ZoneTemplate>
</asp:WebPartZone>
<asp:WebPartZone 
  ID="WebPartZone1" 
  Runat="server"
  LayoutOrientation="Vertical" >
  <EditVerb Text="Edit WebPart" />
  <SelectedPartChromeStyle BackColor="LightBlue" />
  <ZoneTemplate>
    <asp:BulletedList 
      ID="BulletedList1" 
      Runat="server"
      DisplayMode="HyperLink" 
      Title="Favorite Links" >
      <asp:ListItem Value="http://msdn.microsoft.com">
        MSDN
      </asp:ListItem>
      <asp:ListItem Value="http://www.asp.net">
        ASP.NET
      </asp:ListItem>
      <asp:ListItem Value="http://www.msn.com">
        MSN
      </asp:ListItem>
    </asp:BulletedList>
    <asp:Calendar ID="Calendar1" Runat="server" 
      Title="My Calendar" />
  </ZoneTemplate>
</asp:WebPartZone>

備註

控件上 WebPartZoneBase 屬性所EditVerb參考的編輯動詞可讓使用者將區域中的控件切換WebPart為編輯模式,讓使用者可以個人化控件的外觀、屬性、版面配置和內容。

相同的編輯動詞用於區域中的所有控制件。 當網頁元件頁面進入編輯顯示模式 (EditDisplayMode) 時,編輯動詞命令就會顯示在區域中每個 WebPart 控件的動詞功能表中。

適用於

另請參閱