共用方式為


WebPartZoneBase.DragHighlightColor 屬性

定義

取得或設定色彩,該色彩是使用者拖曳控制項時,圍繞 WebPartZoneBase 區域及其置放提示區的框線色彩。

public:
 virtual property System::Drawing::Color DragHighlightColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))]
public virtual System.Drawing.Color DragHighlightColor { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))>]
member this.DragHighlightColor : System.Drawing.Color with get, set
Public Overridable Property DragHighlightColor As Color

屬性值

Color,包含反白顯示色彩。 預設色彩為 Blue

屬性

範例

下列程式代碼範例示範 控件上 WebPartZone 屬性的DragHighlightColor宣告式用法。 如需完整的程式碼範例,包括程式代碼後置原始程式檔和包含此程式代碼中區域的.aspx頁面,請參閱 WebPartZoneBase 類別概觀。

請注意, DragHighlightColor 屬性值會設定為特定色彩。 將頁面載入瀏覽器,並將頁面切換為設計顯示模式之後,您可以在選取並拖曳控件區域內的控件或將另一個控件拖曳到區域中時,看到屬性的效果。

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

備註

當拖曳的控件保留在可卸除的區域上時,會出現拖放提示區域,其中顯示控件可以卸除的區域,而它適用於這些區域,以及區域本身, DragHighlightColor 該屬性會影響框線色彩。

屬性 DragHighlightColor 可讓您設定在區域中拖曳控件時,向用戶顯示的色彩。 DragHighlightColor只有在網頁處於顯示模式時,屬性才會生效,讓區域配置能夠變更,例如 DesignDisplayMode

適用於

另請參閱