Bagikan melalui


WebPartZoneBase.MenuLabelHoverStyle Properti

Definisi

Mendapatkan atribut gaya yang diterapkan ke label menu kata kerja di bilah WebPart judul kontrol saat pengguna memposisikan penunjuk mouse di atas label.

public:
 property System::Web::UI::WebControls::Style ^ MenuLabelHoverStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style MenuLabelHoverStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.MenuLabelHoverStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property MenuLabelHoverStyle As Style

Nilai Properti

Style yang berisi atribut gaya untuk label di menu kata kerja.

Atribut

Contoh

Contoh kode berikut menunjukkan penggunaan MenuLabelHoverStyle deklaratif properti pada WebPartZone kontrol. Untuk contoh kode lengkap, termasuk file sumber code-behind dan halaman .aspx yang berisi zona dalam kode ini, lihat WebPartZoneBase gambaran umum kelas.

Perhatikan bahwa MenuLabelHoverStyle properti memiliki nilai yang ditetapkan untuknya dalam markup deklaratif. Nilai ini berdampak pada WebPartZone2. Setelah Anda memuat halaman ke browser, alihkan halaman ke mode edit, dan posisikan penunjuk mouse Anda di atas menu kata kerja kontrol Bagian Web. Perhatikan bahwa teks label berubah tebal.

<asp:WebPartZone 
  ID="WebPartZone2"
  Runat="server" 
  DragHighlightColor="#00ff00"
  AllowLayoutChange="true"
  EmptyZoneText="Add WebParts to this empty Zone."
  BorderWidth="2"
  BorderColor="DarkBlue"
  BorderStyle="Dashed" 
  MenuLabelText="Verbs Menu" 
  MenuPopupImageUrl="label.gif" >
  <VerbStyle Font-Italic="true" />
  <MenuLabelStyle BackColor="Lime" BorderWidth="1"  />
  <MenuLabelHoverStyle Font-Bold="true" />
  <MenuVerbHoverStyle BackColor="LightGrey" />
  <MenuVerbStyle Font-Italic="true" /> 
  <ZoneTemplate>
    <asp:Label ID="Label1" Runat="server" Title="Date" />
  </ZoneTemplate>
</asp:WebPartZone>
<asp:WebPartZone 
  ID="WebPartZone2"
  Runat="server" 
  DragHighlightColor="#00ff00"
  AllowLayoutChange="true"
  EmptyZoneText="Add WebParts to this empty Zone."
  BorderWidth="2"
  BorderColor="DarkBlue"
  BorderStyle="Dashed" 
  MenuLabelText="Verbs Menu" 
  MenuPopupImageUrl="label.gif" >
  <VerbStyle Font-Italic="true" />
  <MenuLabelStyle BackColor="Lime" BorderWidth="1"  />
  <MenuLabelHoverStyle Font-Bold="true" />
  <MenuVerbHoverStyle BackColor="LightGrey" />
  <MenuVerbStyle Font-Italic="true" /> 
  <ZoneTemplate>
    <asp:Label ID="Label1" Runat="server" Title="Date" />
  </ZoneTemplate>
</asp:WebPartZone>

Keterangan

Properti MenuLabelHoverStyle mempengaruhi gaya seluruh label untuk menu kata kerja di setiap kontrol Bagian Web di zona.

Berlaku untuk

Lihat juga