MenuItemBinding Constructor
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Initialiseert een nieuw exemplaar van de MenuItemBinding klasse.
public:
MenuItemBinding();
public MenuItemBinding();
Public Sub New ()
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u deze constructor gebruikt om de DataBindings verzameling van een Menu besturingselement dynamisch te vullen. Als dit voorbeeld correct werkt, moet u de voorbeeld-XML-gegevens hieronder kopiƫren naar een bestand met de naam MenuDepth.xml.
<%@ page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
if(!IsPostBack)
{
// Create a new MenuItemBinding object.
MenuItemBinding binding = new MenuItemBinding();
// Set the MenuItemBinding object's properties.
binding.TextField = "Title";
binding.ValueField = "Description";
binding.ImageUrlField = "ImageUrl";
binding.ToolTipField = "ToolTip";
// Add the MenuItemBinding object to the
// DataBindings collection of the Menu control.
NavigationMenu.DataBindings.Add(binding);
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemBinding Constructor Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemBinding Constructor Example</h3>
<asp:menu id="NavigationMenu"
datasourceid="MenuSource"
runat="server">
</asp:menu>
<asp:xmldatasource id="MenuSource"
datafile="MenuDepth.xml"
runat="server"/>
</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">
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
If Not IsPostBack Then
' Create a new MenuItemBinding object.
Dim binding As New MenuItemBinding()
' Set the MenuItemBinding object's properties.
binding.TextField = "Title"
binding.ValueField = "Description"
binding.ImageUrlField = "ImageUrl"
binding.ToolTipField = "ToolTip"
' Add the MenuItemBinding object to the
' DataBindings collection of the Menu control.
NavigationMenu.DataBindings.Add(binding)
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemBinding Constructor Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemBinding Constructor Example</h3>
<asp:menu id="NavigationMenu"
datasourceid="MenuSource"
runat="server">
</asp:menu>
<asp:xmldatasource id="MenuSource"
datafile="MenuDepth.xml"
runat="server"/>
</form>
</body>
</html>
De volgende code is voorbeeld van siteoverzichtsgegevens voor het vorige voorbeeld.
<MapNode ImageUrl="~\Images\Home.gif"
Title="Home"
Description="Root Page"
ToolTip="Home Page">
<MapNode ImageUrl="~\Images\Music.gif"
Title="Music"
Description="Music Category"
ToolTip="Music Page">
<MapNode ImageUrl="~\Images\Classical.gif"
Title="Classical"
Description="Classical Section"
ToolTip="Classical Page"/>
<MapNode ImageUrl="~\Images\Rock.gif"
Title="Rock"
Description="Rock Section"
ToolTip="Rock Page"/>
<MapNode ImageUrl="~\Images\Jazz.gif"
Title="Jazz"
Description="Jazz Section"
ToolTip="Jazz Page"/>
</MapNode>
<MapNode ImageUrl="~\Images\Movies.gif"
Title="Movies"
Description="Movies Category"
ToolTip="Movies Page">
<MapNode ImageUrl="~\Images\Action.gif"
Title="Action"
Description="Action Section"
ToolTip="Action Page"/>
<MapNode ImageUrl="~\Images\Drama.gif"
Title="Drama"
Description="Drama Section"
ToolTip="Drama Page"/>
<MapNode ImageUrl="~\Images\Musical.gif"
Title="Musical"
Description="Musical Section"
ToolTip="Musical Page"/>
</MapNode>
</MapNode>
Opmerkingen
Gebruik deze constructor om een nieuw exemplaar van de MenuItemBinding klasse te maken. Het wordt vaak gebruikt bij het dynamisch vullen van de DataBindings verzameling van een Menu besturingselement.