Menu.DisappearAfter Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta l'intervallo di tempo durante il quale un menu dinamico rimane visualizzato dopo che l'utente ha allontanato il puntatore del mouse dal menu.
public:
property int DisappearAfter { int get(); void set(int value); };
[System.Web.UI.Themeable(false)]
public int DisappearAfter { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.DisappearAfter : int with get, set
Public Property DisappearAfter As Integer
Valore della proprietà
Intervallo di tempo in millisecondi durante il quale un menu dinamico rimane visualizzato dopo che l'utente ha allontanato il puntatore del mouse dal menu. Il valore predefinito è 500.
- Attributi
Eccezioni
Il valore selezionato è minore di -1.
Esempio
Nell'esempio di codice seguente viene illustrato come usare la DisappearAfter proprietà per specificare che un menu dinamico deve essere scomparso dopo che l'utente sposta il puntatore del mouse dal menu per più di due secondi.
<%@ Page Language="C#" %>
<!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>Menu DisappearAfter Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu DisappearAfter Example</h3>
<!-- Use the DisappearAfter property to -->
<!-- hide the dynamic menu items if the -->
<!-- user moves the mouse pointer away -->
<!-- from the menu for two seconds. -->
<asp:menu id="NavigationMenu"
disappearafter="2000"
staticdisplaylevels="1"
orientation="Vertical"
runat="server">
<items>
<asp:menuitem navigateurl="~\Home.aspx"
text="Home"/>
<asp:menuitem navigateurl="~\Music.aspx"
text="Music">
<asp:menuitem navigateurl="~\Classical.aspx"
text="Classical"/>
<asp:menuitem navigateurl="~\Rock.aspx"
text="Rock"/>
<asp:menuitem navigateurl="~\Jazz.aspx"
text="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="~\Movies.aspx"
text="Movies">
<asp:menuitem navigateurl="~\Action.aspx"
text="Action"/>
<asp:menuitem navigateurl="~\Drama.aspx"
text="Drama"/>
<asp:menuitem navigateurl="~\SciFi.aspx"
text="Science Fiction"/>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!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>Menu DisappearAfter Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu DisappearAfter Example</h3>
<!-- Use the DisappearAfter property to -->
<!-- hide the dynamic menu items if the -->
<!-- user moves the mouse pointer away -->
<!-- from the menu for two seconds. -->
<asp:menu id="NavigationMenu"
disappearafter="2000"
staticdisplaylevels="1"
orientation="Vertical"
runat="server">
<items>
<asp:menuitem navigateurl="~\Home.aspx"
text="Home"/>
<asp:menuitem navigateurl="~\Music.aspx"
text="Music">
<asp:menuitem navigateurl="~\Classical.aspx"
text="Classical"/>
<asp:menuitem navigateurl="~\Rock.aspx"
text="Rock"/>
<asp:menuitem navigateurl="~\Jazz.aspx"
text="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="~\Movies.aspx"
text="Movies">
<asp:menuitem navigateurl="~\Action.aspx"
text="Action"/>
<asp:menuitem navigateurl="~\Drama.aspx"
text="Drama"/>
<asp:menuitem navigateurl="~\SciFi.aspx"
text="Science Fiction"/>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
Commenti
Per impostazione predefinita, un menu dinamico scompare automaticamente dopo una determinata durata quando il puntatore del mouse non è più posizionato sul menu. Utilizzare la DisappearAfter proprietà per specificare la durata.
Nota
Un menu dinamico scompare immediatamente se l'utente fa clic all'esterno del menu.
È anche possibile specificare che un menu dinamico non deve mai scomparire automaticamente impostando questa proprietà su -1. In questo caso, la voce di menu dinamica scompare solo quando l'utente fa clic all'esterno del menu.
Questa proprietà non può essere impostata da temi oppure temi di fogli di stile. Per altre informazioni, vedere ThemeableAttribute e ASP.NET Temi e skin.