ListView.ShowItemToolTips 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ListViewItem에 포함된 ListView 개체에 대한 도구 설명이 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool ShowItemToolTips { bool get(); void set(bool value); };
public bool ShowItemToolTips { get; set; }
member this.ShowItemToolTips : bool with get, set
Public Property ShowItemToolTips As Boolean
속성 값
ListViewItem 도구 설명이 표시되면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
예제
다음 코드 예제를 사용 ShowItemToolTips 하는 방법을 보여 줍니다는 및 ListViewItem.ToolTipText 속성입니다. 이 예제를 실행하려면 코드를 Windows Form에 붙여넣고 폼의 생성자 또는 Load 이벤트 처리기에서 를 호출 InitializeItemsWithToolTips
합니다.
// Declare the ListView.
private ListView ListViewWithToolTips;
private void InitializeItemsWithToolTips()
{
// Construct and set the View property of the ListView.
ListViewWithToolTips = new ListView();
ListViewWithToolTips.Width = 200;
ListViewWithToolTips.View = View.List;
// Show item tooltips.
ListViewWithToolTips.ShowItemToolTips = true;
// Create items with a tooltip.
ListViewItem item1WithToolTip = new ListViewItem("Item with a tooltip");
item1WithToolTip.ToolTipText = "This is the item tooltip.";
ListViewItem item2WithToolTip = new ListViewItem("Second item with a tooltip");
item2WithToolTip.ToolTipText = "A different tooltip for this item.";
// Create an item without a tooltip.
ListViewItem itemWithoutToolTip = new ListViewItem("Item without tooltip.");
// Add the items to the ListView.
ListViewWithToolTips.Items.AddRange(new ListViewItem[]{item1WithToolTip,
item2WithToolTip, itemWithoutToolTip} );
// Add the ListView to the form.
this.Controls.Add(ListViewWithToolTips);
this.Controls.Add(button1);
}
' Declare the ListView.
Private ListViewWithToolTips As ListView
Private Sub InitializeItemsWithToolTips()
' Construct and set the View property of the ListView.
ListViewWithToolTips = New ListView()
ListViewWithToolTips.Width = 200
ListViewWithToolTips.View = View.List
' Show item tooltips.
ListViewWithToolTips.ShowItemToolTips = True
' Create items with a tooltip.
Dim item1WithToolTip As New ListViewItem("Item with a tooltip")
item1WithToolTip.ToolTipText = "This is the item tooltip."
Dim item2WithToolTip As New ListViewItem("Second item with a tooltip")
item2WithToolTip.ToolTipText = "A different tooltip for this item."
' Create an item without a tooltip.
Dim itemWithoutToolTip As New ListViewItem("Item without tooltip.")
' Add the items to the ListView.
ListViewWithToolTips.Items.AddRange(New ListViewItem() _
{item1WithToolTip, item2WithToolTip, itemWithoutToolTip})
' Add the ListView to the form.
Me.Controls.Add(ListViewWithToolTips)
Me.Controls.Add(button1)
End Sub
설명
속성이 ShowItemToolTips 로 true
ListViewItem 설정된 경우 도구 설명이 있는 모든 속성이 표시되고, 그렇지 않으면 아무것도 표시되지 않습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET