Help.ShowPopup(Control, String, Point) 메서드

정의

도움말 팝업 창을 표시합니다.

public:
 static void ShowPopup(System::Windows::Forms::Control ^ parent, System::String ^ caption, System::Drawing::Point location);
public static void ShowPopup (System.Windows.Forms.Control parent, string caption, System.Drawing.Point location);
public static void ShowPopup (System.Windows.Forms.Control? parent, string caption, System.Drawing.Point location);
static member ShowPopup : System.Windows.Forms.Control * string * System.Drawing.Point -> unit
Public Shared Sub ShowPopup (parent As Control, caption As String, location As Point)

매개 변수

parent
Control

도움말 대화 상자의 부모를 나타내는 Control입니다.

caption
String

팝업 창에 표시할 메시지입니다.

location
Point

화면의 왼쪽 위를 기준으로 팝업 창을 표시할 가로 및 세로 좌표를 지정하는 값입니다.

예제

다음 코드 예제에서는 클래스와 함께 Help 이벤트를 사용하여 KeyUp 사용자에게 팝업 스타일 도움말을 표시합니다.

   // This example demonstrates how to use the KeyUp event with the Help class to display
   // pop-up style help to the user of the application. When the user presses F1, the Help
   // class displays a pop-up window, similar to a ToolTip, near the control. This example assumes
   // that a TextBox control, named textBox1, has been added to the form and its KeyUp
   // event has been connected to this event handler method.
private:
   void textBox1_KeyUp( Object^ /*sender*/, System::Windows::Forms::KeyEventArgs^ e )
   {
      
      // Determine whether the key entered is the F1 key. Display help if it is.
      if ( e->KeyCode == Keys::F1 )
      {
         
         // Display a pop-up help topic to assist the user.
         Help::ShowPopup( textBox1, "Enter your first name", Point(textBox1->Right,this->textBox1->Bottom) );
      }
   }
// This example demonstrates how to use the KeyUp event with the Help class to display
// pop-up style help to the user of the application. When the user presses F1, the Help
// class displays a pop-up window, similar to a ToolTip, near the control. This example assumes
// that a TextBox control, named textBox1, has been added to the form and its KeyUp
// event has been contected to this event handler method.
private void textBox1_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e)
{
    // Determine whether the key entered is the F1 key. Display help if it is.
    if(e.KeyCode == Keys.F1)
    {
        // Display a pop-up help topic to assist the user.
        Help.ShowPopup(textBox1, "Enter your first name", new Point(textBox1.Right, this.textBox1.Bottom));
    }
}
' This example demonstrates how to use the KeyUp event with the Help class to display
' pop-up style help to the user of the application. When the user presses F1, the Help
' class displays a pop-up window, similar to a ToolTip, near the control. This example assumes
' that a TextBox control, named textBox1, has been added to the form and its KeyUp
' event has been contected to this event handler method.
Private Sub textBox1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles textBox1.KeyUp
    ' Determine whether the key entered is the F1 key. Display help if it is.
    If e.KeyCode = Keys.F1 Then
        ' Display a pop-up help topic to assist the user.
        Help.ShowPopup(textBox1, "Enter your first name", New Point(textBox1.Right, Me.textBox1.Bottom))
    End If
End Sub

적용 대상

추가 정보