다음을 통해 공유


방법: 디자인 타임에 Windows Form의 컨트롤에 도구 설명 설정

코드 또는 Visual Studio의 Windows Forms 디자이너에서 ToolTip 문자열을 설정할 수 있습니다. ToolTip 구성 요소에 대한 자세한 내용은 도구 설명 구성 요소 개요를 참조하세요.

프로그래밍 방식으로 도구 설명 설정

  1. 도구 설명을 표시할 컨트롤을 추가합니다.

  2. SetToolTip 구성 요소의 ToolTip 메서드를 사용합니다.

    ' In this example, Button1 is the control to display the ToolTip.
    ToolTip1.SetToolTip(Button1, "Save changes")
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1.SetToolTip(button1, "Save changes");
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1->SetToolTip(button1, "Save changes");
    

디자이너에서 도구 설명 설정

  1. Visual Studio 양식에 ToolTip 구성 요소를 추가합니다.

  2. 도구 설명을 표시할 컨트롤을 선택하거나 양식에 추가합니다.

  3. 속성 창에서 도구 설명1의 도구 설명 값을 적절한 텍스트 문자열로 설정합니다.

프로그래밍 방식으로 도구 설명을 제거하려면

  1. SetToolTip 구성 요소의 ToolTip 메서드를 사용합니다.

    ' In this example, Button1 is the control displaying the ToolTip.
    ToolTip1.SetToolTip(Button1, Nothing)
    
    // In this example, button1 is the control displaying the ToolTip.
    toolTip1.SetToolTip(button1, null);
    
    // In this example, button1 is the control displaying the ToolTip.
    toolTip1->SetToolTip(button1, NULL);
    

디자이너에서 도구 설명 제거

  1. Visual Studio에서 도구 설명을 표시하는 컨트롤을 선택합니다.

  2. 속성 창에서 도구 설명1의 도구 설명에서 텍스트를 삭제합니다.

참고 항목