TreeNode.ImageToolTip 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
노드 옆에 표시되는 이미지의 도구 설명 텍스트를 가져오거나 설정합니다.
public:
property System::String ^ ImageToolTip { System::String ^ get(); void set(System::String ^ value); };
public string ImageToolTip { get; set; }
member this.ImageToolTip : string with get, set
Public Property ImageToolTip As String
속성 값
노드 옆에 표시되는 이미지의 도구 설명 텍스트입니다. 기본값은 빈 문자열("")로, 이 속성이 설정되어 있지 않음을 나타냅니다.
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 ImageToolTip 노드 옆에 표시 되는 이미지에 대 한 도구 설명 텍스트를 지정 하는 속성입니다. 제대로 작동 하려면이 예제에서는 사용자 고유의 이미지를 제공 해야 합니다.
<%@ 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>TreeNode ImageToolTip Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>TreeNode ImageToolTip Example</h3>
<h5>Position the mouse pointer over a node image.</h5>
<asp:TreeView id="LinksTreeView"
Font-Names= "Arial"
ForeColor="Blue"
ExpandDepth="2"
runat="server">
<LevelStyles>
<asp:TreeNodeStyle ChildNodesPadding="10"
Font-Bold="true"
Font-Size="12pt"
ForeColor="DarkGreen"/>
<asp:TreeNodeStyle ChildNodesPadding="5"
Font-Bold="true"
Font-Size="10pt"/>
<asp:TreeNodeStyle ChildNodesPadding="5"
Font-UnderLine="true"
Font-Size="10pt"/>
<asp:TreeNodeStyle ChildNodesPadding="10"
Font-Size="8pt"/>
</LevelStyles>
<Nodes>
<asp:TreeNode Text="Table of Contents"
ImageUrl="~\images\Contents.jpg"
ImageToolTip="Table of Contents Description">
<asp:TreeNode Text="Chapter One"
ImageUrl="~\images\Chapter1.jpg"
ImageToolTip="Chapter One Description">
<asp:TreeNode Text="Section 1.0"
ImageUrl="~\images\Section1.jpg"
ImageToolTip="Section 1.0 Description">
<asp:TreeNode Text="Topic 1.0.1"/>
<asp:TreeNode Text="Topic 1.0.2"/>
<asp:TreeNode Text="Topic 1.0.3"/>
</asp:TreeNode>
<asp:TreeNode Text="Section 1.1"
ImageUrl="~\images\Section1_1.jpg"
ImageToolTip="Section 1.1 Description">
<asp:TreeNode Text="Topic 1.1.1"/>
<asp:TreeNode Text="Topic 1.1.2"/>
<asp:TreeNode Text="Topic 1.1.3"/>
<asp:TreeNode Text="Topic 1.1.4"/>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Chapter Two"
ImageUrl="~\images\Chapter2.jpg"
ImageToolTip="Chapter Two Description">
<asp:TreeNode Text="Section 2.0"
ImageUrl="~\images\Section2.jpg"
ImageToolTip="Section 2.0 Description">
<asp:TreeNode Text="Topic 2.0.1"/>
<asp:TreeNode Text="Topic 2.0.2"/>
</asp:TreeNode>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Appendix A"
ImageUrl="~\images\AppendixA.jpg"
ImageToolTip="Appendix A Description"/>
<asp:TreeNode Text="Appendix B"
ImageUrl="~\images\AppendixB.jpg"
ImageToolTip="Appendix B Description"/>
<asp:TreeNode Text="Appendix C"
ImageUrl="~\images\AppendixC.jpg"
ImageToolTip="Appendix C Description"/>
</Nodes>
</asp:TreeView>
</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>TreeNode ImageToolTip Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>TreeNode ImageToolTip Example</h3>
<h5>Position the mouse pointer over a node image.</h5>
<asp:TreeView id="LinksTreeView"
Font-Names= "Arial"
ForeColor="Blue"
ExpandDepth="2"
runat="server">
<LevelStyles>
<asp:TreeNodeStyle ChildNodesPadding="10"
Font-Bold="true"
Font-Size="12pt"
ForeColor="DarkGreen"/>
<asp:TreeNodeStyle ChildNodesPadding="5"
Font-Bold="true"
Font-Size="10pt"/>
<asp:TreeNodeStyle ChildNodesPadding="5"
Font-UnderLine="true"
Font-Size="10pt"/>
<asp:TreeNodeStyle ChildNodesPadding="10"
Font-Size="8pt"/>
</LevelStyles>
<Nodes>
<asp:TreeNode Text="Table of Contents"
ImageUrl="~\images\Contents.jpg"
ImageToolTip="Table of Contents Description">
<asp:TreeNode Text="Chapter One"
ImageUrl="~\images\Chapter1.jpg"
ImageToolTip="Chapter One Description">
<asp:TreeNode Text="Section 1.0"
ImageUrl="~\images\Section1.jpg"
ImageToolTip="Section 1.0 Description">
<asp:TreeNode Text="Topic 1.0.1"/>
<asp:TreeNode Text="Topic 1.0.2"/>
<asp:TreeNode Text="Topic 1.0.3"/>
</asp:TreeNode>
<asp:TreeNode Text="Section 1.1"
ImageUrl="~\images\Section1_1.jpg"
ImageToolTip="Section 1.1 Description">
<asp:TreeNode Text="Topic 1.1.1"/>
<asp:TreeNode Text="Topic 1.1.2"/>
<asp:TreeNode Text="Topic 1.1.3"/>
<asp:TreeNode Text="Topic 1.1.4"/>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Chapter Two"
ImageUrl="~\images\Chapter2.jpg"
ImageToolTip="Chapter Two Description">
<asp:TreeNode Text="Section 2.0"
ImageUrl="~\images\Section2.jpg"
ImageToolTip="Section 2.0 Description">
<asp:TreeNode Text="Topic 2.0.1"/>
<asp:TreeNode Text="Topic 2.0.2"/>
</asp:TreeNode>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Appendix A"
ImageUrl="~\images\AppendixA.jpg"
ImageToolTip="Appendix A Description"/>
<asp:TreeNode Text="Appendix B"
ImageUrl="~\images\AppendixB.jpg"
ImageToolTip="Appendix B Description"/>
<asp:TreeNode Text="Appendix C"
ImageUrl="~\images\AppendixC.jpg"
ImageToolTip="Appendix C Description"/>
</Nodes>
</asp:TreeView>
</form>
</body>
</html>
설명
이미지 노드 옆에 표시 되 면 (때를 ImageUrl 속성을 설정)를 사용 하 여는 ImageToolTip 이미지 위로 마우스 포인터를 놓을 때 표시할 도구 설명을 지정 하는 속성. 지정 하는 텍스트 컨트롤을 보다 쉽게 액세스할 수 있도록 하는 데 사용할 수 있는 이미지의 설명 사용 하 여 보조 기술 디바이스를 제공 합니다.
이 속성의 값은 뷰 상태에 저장 됩니다.
이 속성의 값으로 설정 된 경우 디자이너 도구를 사용 하 여 리소스 파일에 자동으로 저장 될 수 있습니다. 자세한 내용은 LocalizableAttribute 하 고 전역화 및 지역화합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET