다음을 통해 공유


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

업데이트: 2007년 11월

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

참고:

실제 설정이나 버전에 따라서 화면에 나타나는 대화 상자와 메뉴 명령이 도움말의 설명과 다를 수 있습니다. 설정을 변경하려면 도구 메뉴에서 설정 가져오기 및 내보내기를 선택합니다. 자세한 내용은 Visual Studio 설정을 참조하십시오.

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

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

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

    ' 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");
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1->SetToolTip(button1, "Save changes");
    

디자이너에서 도구 설명을 설정하려면

  1. 폼에 ToolTip 구성 요소를 추가합니다.

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

  3. 속성 창에서 ToolTip on ToolTip1 값에 해당 텍스트 문자열을 설정합니다.

참고 항목

작업

방법: Windows Forms ToolTip 구성 요소의 지연 변경

참조

ToolTip 구성 요소 개요(Windows Forms)

기타 리소스

ToolTip 구성 요소(Windows Forms)