TreeNodeBinding::ImageToolTip Property
Gets or sets the ToolTip text for the image that is displayed next to a node to which the TreeNodeBinding object is applied.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::StringThe ToolTip text for the image that is displayed next to a node to which the TreeNodeBinding object is applied. The default is an empty string (""), which indicates that the P:System.Web.UI.WebControls.TreeNodeBinding.ImageToolTip property is not set.
When the TreeView control is bound to a data source, use the ImageToolTip property to specify the value to bind to the ImageToolTip property of a TreeNode object. The text that you specify provides Assistive Technology devices with a description of the image that can be used to make the control more accessible.
This binding relationship affects all TreeNode objects to which the TreeNodeBinding object is applied. When an image is displayed next to a node, the ToolTip text is displayed when the mouse pointer is positioned over the image.
Note |
|---|
You can selectively override the ImageToolTip property by setting the ImageToolTip property of each node directly. |
Instead of using the ImageToolTip property to bind the same ToolTip text to each node image, you can bind the ImageToolTip property of a TreeNode object to a field of a data source by setting the ImageToolTipField property.
The value of this property is stored in view state.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.
This section contains two code examples. The first code example demonstrates how to use the ImageToolTip property to specify the ToolTip text for the image that is displayed next to a node to which the TreeNodeBinding object is applied. The second code example provides sample XML data for the first code example.
The following example demonstrates how to use the ImageToolTip property to specify the ToolTip text for the image that is displayed next to a node to which the TreeNodeBinding object is applied. For this example to work correctly, you must copy the sample XML data, provided after this code example, to a file named Booklist.xml.
The following code example provides sample XML data for the preceding code example.
<Books Text="Books List">
<Book Text="Book Title One"
Value="1"
Image="Bookimage1.jpg"
ImageToolTip="Book 1 Photo"
Nav="http://www.microsoft.com"
Tip="Book Title 1">
<Description Text="Book Description">
</Description>
<Price Value="$1.99">
</Price>
<Author Text="Author Name"
Value="LastName"
Image="Authorimage1.jpg"
Nav="http://www.microsoft.com"
Tip="Author Name">
</Author>
</Book>
<Book Text="Book Title Two"
Value="2"
Image="Bookimage2.jpg"
ImageToolTip="Book 2 Photo"
Nav="http://www.microsoft.com"
Tip="Click Me">
<Description Text="Book Description">
</Description>
<Price Value="$2.99">
</Price>
<Author Text="Author Name"
Value="LastName"
Image="Authorimage2.jpg"
Nav="http://www.microsoft.com"
Tip="Author Name">
</Author>
</Book>
</Books>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note