다음을 통해 공유


TreeView.HotTracking 속성

마우스 포인터가 지나갈 때 트리 노드 레이블이 하이퍼링크 모양을 취할지 여부를 나타내는 값을 가져오거나 설정합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Property HotTracking As Boolean
‘사용 방법
Dim instance As TreeView
Dim value As Boolean

value = instance.HotTracking

instance.HotTracking = value
public bool HotTracking { get; set; }
public:
property bool HotTracking {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_HotTracking ()

/** @property */
public void set_HotTracking (boolean value)
public function get HotTracking () : boolean

public function set HotTracking (value : boolean)

속성 값

마우스 포인터가 지나갈 때 트리 노드 레이블이 하이퍼링크 모양을 취하면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

예외

예외 형식 조건

ArgumentOutOfRangeException

설정된 값이 -1보다 작은 경우

설명

CheckBoxes 속성이 true로 설정되면 HotTracking 속성은 적용되지 않습니다.

참고

HotTracking 속성이 true로 설정되면 마우스 포인터가 지나갈 때 각 트리 노드 레이블이 하이퍼링크 모양을 취합니다. Underline 글꼴 스타일이 Font에 적용되고 ForeColor가 파랑으로 설정되어 레이블이 링크로 표시됩니다. 해당 모양은 사용자 운영 체제의 인터넷 설정에 의해 제어되지 않습니다.

예제

다음 코드 예제에서는 사용자 지정된 TreeView를 보여 줍니다. 이 사용자 지정 버전은 TreeView 클래스를 상속함으로써 일반적인 TreeView의 모든 기능을 갖습니다. 생성자의 다양한 속성 값을 변경하여 고유한 모양을 만들 수 있습니다. ShowPlusMinus 속성이 false로 설정되어 있으므로 이 사용자 지정된 컨트롤은 노드를 클릭할 때 노드가 확장되거나 축소될 수 있도록 OnAfterSelect 메서드도 재정의합니다.

이 방법으로 사용자 지정된 컨트롤을 조직 전체에서 사용하면 각각의 개별 프로젝트에서 컨트롤 속성을 지정하지 않고도 일관된 인터페이스를 쉽게 제공할 수 있습니다.

Public Class CustomizedTreeView
    Inherits TreeView

    Public Sub New()
        ' Customize the TreeView control by setting various properties.
        BackColor = System.Drawing.Color.CadetBlue
        FullRowSelect = True
        HotTracking = True
        Indent = 34
        ShowPlusMinus = False

        ' The ShowLines property must be false for the FullRowSelect 
        ' property to work.
        ShowLines = False
    End Sub 'New


    Protected Overrides Sub OnAfterSelect(ByVal e As TreeViewEventArgs)
        ' Confirm that the user initiated the selection.
        ' This prevents the first node from expanding when it is
        ' automatically selected during the initialization of 
        ' the TreeView control.
        If e.Action <> TreeViewAction.Unknown Then
            If e.Node.IsExpanded Then
                e.Node.Collapse()
            Else
                e.Node.Expand()
            End If
        End If

        ' Remove the selection. This allows the same node to be
        ' clicked twice in succession to toggle the expansion state.
        SelectedNode = Nothing
    End Sub 'OnAfterSelect

End Class 'CustomizedTreeView 
public class CustomizedTreeView : TreeView
{
    public CustomizedTreeView()
    {
        // Customize the TreeView control by setting various properties.
        BackColor = System.Drawing.Color.CadetBlue;
        FullRowSelect = true;
        HotTracking = true;
        Indent = 34;
        ShowPlusMinus = false;

        // The ShowLines property must be false for the FullRowSelect 
        // property to work.
        ShowLines = false;
    }

    protected override void OnAfterSelect(TreeViewEventArgs e)
    {
        // Confirm that the user initiated the selection.
        // This prevents the first node from expanding when it is
        // automatically selected during the initialization of 
        // the TreeView control.
        if (e.Action != TreeViewAction.Unknown)
        {
            if (e.Node.IsExpanded) 
            {
                e.Node.Collapse();
            }
            else 
            {
                e.Node.Expand();
            }
        }

        // Remove the selection. This allows the same node to be
        // clicked twice in succession to toggle the expansion state.
        SelectedNode = null;
    }

}
public ref class CustomizedTreeView: public TreeView
{
public:
   CustomizedTreeView()
   {

      // Customize the TreeView control by setting various properties.
      BackColor = System::Drawing::Color::CadetBlue;
      FullRowSelect = true;
      HotTracking = true;
      Indent = 34;
      ShowPlusMinus = false;

      // The ShowLines property must be false for the FullRowSelect
      // property to work.
      ShowLines = false;
   }

protected:
   virtual void OnAfterSelect( TreeViewEventArgs^ e ) override
   {
      // Confirm that the user initiated the selection.
      // This prevents the first node from expanding when it is
      // automatically selected during the initialization of
      // the TreeView control.
      if ( e->Action != TreeViewAction::Unknown )
      {
         if ( e->Node->IsExpanded )
         {
            e->Node->Collapse();
         }
         else
         {
            e->Node->Expand();
         }
      }

      
      // Remove the selection. This allows the same node to be
      // clicked twice in succession to toggle the expansion state.
      SelectedNode = nullptr;
   }
};
public class CustomizedTreeView extends TreeView
{
    public CustomizedTreeView()
    {
        // Customize the TreeView control by setting various properties.
        set_BackColor(System.Drawing.Color.get_CadetBlue());
        set_FullRowSelect(true);
        set_HotTracking(true);
        set_Indent(34);
        set_ShowPlusMinus(false);
        // The ShowLines property must be false for the FullRowSelect 
        // property to work.
        set_ShowLines(false);
    } //CustomizedTreeView

    protected void OnAfterSelect(TreeViewEventArgs e)
    {
        // Confirm that the user initiated the selection.
        // This prevents the first node from expanding when it is
        // automatically selected during the initialization of 
        // the TreeView control.
        if (!(e.get_Action().Equals(TreeViewAction.Unknown))) {
            if (e.get_Node().get_IsExpanded()) {
                e.get_Node().Collapse();
            }
            else {
                e.get_Node().Expand();
            }
        }
        // Remove the selection. This allows the same node to be
        // clicked twice in succession to toggle the expansion state.
        set_SelectedNode(null);
    } //OnAfterSelect
}//CustomizedTreeView 

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

TreeView 클래스
TreeView 멤버
System.Windows.Forms 네임스페이스