Freigeben über


Cursors.Help-Eigenschaft

Ruft den Hilfecursor ab, der aus einer Kombination von Pfeil und Fragezeichen gebildet ist.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

'Declaration
Public Shared ReadOnly Property Help As Cursor
'Usage
Dim value As Cursor

value = Cursors.Help
public static Cursor Help { get; }
public:
static property Cursor^ Help {
    Cursor^ get ();
}
/** @property */
public static Cursor get_Help ()
public static function get Help () : Cursor

Eigenschaftenwert

Der Cursor, der den Hilfecursor darstellt.

Beispiel

Im folgenden Beispiel wird die Cursors-Klasse veranschaulicht. Fügen Sie zum Ausführen des Beispiels folgenden Code in ein Formular ein, und rufen Sie die InitializeRadioButtonsAndGroupBox-Methode im Konstruktor oder in der Load-Methode des Formulars auf. Stellen Sie sicher, dass allen Ereignissen eine entsprechende Methode für die Ereignisbehandlung zugeordnet ist.

Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton

Private Sub InitializeRadioButtonsAndGroupBox()

    ' Construct the GroupBox object.
    Me.GroupBox1 = New GroupBox

    ' Construct the radio buttons.
    Me.RadioButton1 = New System.Windows.Forms.RadioButton
    Me.RadioButton2 = New System.Windows.Forms.RadioButton
    Me.RadioButton3 = New System.Windows.Forms.RadioButton

    ' Set the location, tab and text for each radio button
    ' to a cursor from the Cursors enumeration.
    Me.RadioButton1.Location = New System.Drawing.Point(24, 24)
    Me.RadioButton1.TabIndex = 0
    Me.RadioButton1.Text = "Help"
    Me.RadioButton1.Tag = Cursors.Help
    Me.RadioButton1.TextAlign = ContentAlignment.MiddleCenter

    Me.RadioButton2.Location = New System.Drawing.Point(24, 56)
    Me.RadioButton2.TabIndex = 1
    Me.RadioButton2.Text = "Up Arrow"
    Me.RadioButton2.Tag = Cursors.UpArrow
    Me.RadioButton2.TextAlign = ContentAlignment.MiddleCenter

    Me.RadioButton3.Location = New System.Drawing.Point(24, 80)
    Me.RadioButton3.TabIndex = 3
    Me.RadioButton3.Text = "Cross"
    Me.RadioButton3.Tag = Cursors.Cross
    Me.RadioButton3.TextAlign = ContentAlignment.MiddleCenter

    ' Add the radio buttons to the GroupBox.  
    Me.GroupBox1.Controls.Add(Me.RadioButton1)
    Me.GroupBox1.Controls.Add(Me.RadioButton2)
    Me.GroupBox1.Controls.Add(Me.RadioButton3)

    ' Set the location of the GroupBox. 
    Me.GroupBox1.Location = New System.Drawing.Point(56, 64)
    Me.GroupBox1.Size = New System.Drawing.Size(200, 150)

    ' Set the text that will appear on the GroupBox.
    Me.GroupBox1.Text = "Choose a Cursor Style"
    '
    ' Add the GroupBox to the form.
    Me.Controls.Add(Me.GroupBox1)
    '

End Sub
internal System.Windows.Forms.GroupBox GroupBox1;
internal System.Windows.Forms.RadioButton RadioButton1;
internal System.Windows.Forms.RadioButton RadioButton2;
internal System.Windows.Forms.RadioButton RadioButton3;

private void InitializeRadioButtonsAndGroupBox()
{

    // Construct the GroupBox object.
    this.GroupBox1 = new GroupBox();

    // Construct the radio buttons.
    this.RadioButton1 = new System.Windows.Forms.RadioButton();
    this.RadioButton2 = new System.Windows.Forms.RadioButton();
    this.RadioButton3 = new System.Windows.Forms.RadioButton();

    // Set the location, tab and text for each radio button
    // to a cursor from the Cursors enumeration.
    this.RadioButton1.Location = new System.Drawing.Point(24, 24);
    this.RadioButton1.TabIndex = 0;
    this.RadioButton1.Text = "Help";
    this.RadioButton1.Tag = Cursors.Help;
    this.RadioButton1.TextAlign = ContentAlignment.MiddleCenter;

    this.RadioButton2.Location = new System.Drawing.Point(24, 56);
    this.RadioButton2.TabIndex = 1;
    this.RadioButton2.Text = "Up Arrow";
    this.RadioButton2.Tag = Cursors.UpArrow;
    this.RadioButton2.TextAlign = ContentAlignment.MiddleCenter;

    this.RadioButton3.Location = new System.Drawing.Point(24, 80);
    this.RadioButton3.TabIndex = 3;
    this.RadioButton3.Text = "Cross";
    this.RadioButton3.Tag = Cursors.Cross;
    this.RadioButton3.TextAlign = ContentAlignment.MiddleCenter;
    
    
    // Add the radio buttons to the GroupBox.  
    this.GroupBox1.Controls.Add(this.RadioButton1);
    this.GroupBox1.Controls.Add(this.RadioButton2);
    this.GroupBox1.Controls.Add(this.RadioButton3);

    // Set the location of the GroupBox. 
    this.GroupBox1.Location = new System.Drawing.Point(56, 64);
    this.GroupBox1.Size = new System.Drawing.Size(200, 150);

    // Set the text that will appear on the GroupBox.
    this.GroupBox1.Text = "Choose a Cursor Style";
    //
    // Add the GroupBox to the form.
    this.Controls.Add(this.GroupBox1);
    //

}
internal:
   System::Windows::Forms::GroupBox^ GroupBox1;
   System::Windows::Forms::RadioButton^ RadioButton1;
   System::Windows::Forms::RadioButton^ RadioButton2;
   System::Windows::Forms::RadioButton^ RadioButton3;

private:
   void InitializeRadioButtonsAndGroupBox()
   {
      
      // Construct the GroupBox object.
      this->GroupBox1 = gcnew GroupBox;
      
      // Construct the radio buttons.
      this->RadioButton1 = gcnew System::Windows::Forms::RadioButton;
      this->RadioButton2 = gcnew System::Windows::Forms::RadioButton;
      this->RadioButton3 = gcnew System::Windows::Forms::RadioButton;
      
      // Set the location, tab and text for each radio button
      // to a cursor from the Cursors enumeration.
      this->RadioButton1->Location = System::Drawing::Point( 24, 24 );
      this->RadioButton1->TabIndex = 0;
      this->RadioButton1->Text = "Help";
      this->RadioButton1->Tag = Cursors::Help;
      this->RadioButton1->TextAlign = ContentAlignment::MiddleCenter;
      this->RadioButton2->Location = System::Drawing::Point( 24, 56 );
      this->RadioButton2->TabIndex = 1;
      this->RadioButton2->Text = "Up Arrow";
      this->RadioButton2->Tag = Cursors::UpArrow;
      this->RadioButton2->TextAlign = ContentAlignment::MiddleCenter;
      this->RadioButton3->Location = System::Drawing::Point( 24, 80 );
      this->RadioButton3->TabIndex = 3;
      this->RadioButton3->Text = "Cross";
      this->RadioButton3->Tag = Cursors::Cross;
      this->RadioButton3->TextAlign = ContentAlignment::MiddleCenter;
      
      // Add the radio buttons to the GroupBox.  
      this->GroupBox1->Controls->Add( this->RadioButton1 );
      this->GroupBox1->Controls->Add( this->RadioButton2 );
      this->GroupBox1->Controls->Add( this->RadioButton3 );
      
      // Set the location of the GroupBox. 
      this->GroupBox1->Location = System::Drawing::Point( 56, 64 );
      this->GroupBox1->Size = System::Drawing::Size( 200, 150 );
      
      // Set the text that will appear on the GroupBox.
      this->GroupBox1->Text = "Choose a Cursor Style";
      
      //
      // Add the GroupBox to the form.
      this->Controls->Add( this->GroupBox1 );
      
      //
   }
System.Windows.Forms.GroupBox groupBox1;
System.Windows.Forms.RadioButton radioButton1;
System.Windows.Forms.RadioButton radioButton2;
System.Windows.Forms.RadioButton radioButton3;

private void InitializeRadioButtonsAndGroupBox()
{
    // Construct the GroupBox object.
    this.groupBox1 = new GroupBox();

    // Construct the radio buttons.
    this.radioButton1 = new System.Windows.Forms.RadioButton();
    this.radioButton2 = new System.Windows.Forms.RadioButton();
    this.radioButton3 = new System.Windows.Forms.RadioButton();

    // Set the location, tab and text for each radio button
    // to a cursor from the Cursors enumeration.
    this.radioButton1.set_Location(new System.Drawing.Point(24, 24));
    this.radioButton1.set_TabIndex(0);
    this.radioButton1.set_Text("Help");
    this.radioButton1.set_Tag(Cursors.get_Help());
    this.radioButton1.set_TextAlign(ContentAlignment.MiddleCenter);

    this.radioButton2.set_Location(new System.Drawing.Point(24, 56));
    this.radioButton2.set_TabIndex(1);
    this.radioButton2.set_Text("Up Arrow");
    this.radioButton2.set_Tag(Cursors.get_UpArrow());
    this.radioButton2.set_TextAlign(ContentAlignment.MiddleCenter);

    this.radioButton3.set_Location(new System.Drawing.Point(24, 80));
    this.radioButton3.set_TabIndex(3);
    this.radioButton3.set_Text("Cross");
    this.radioButton3.set_Tag(Cursors.get_Cross());
    this.radioButton3.set_TextAlign(ContentAlignment.MiddleCenter);

    // Add the radio buttons to the GroupBox.  
    this.groupBox1.get_Controls().Add(this.radioButton1);
    this.groupBox1.get_Controls().Add(this.radioButton2);
    this.groupBox1.get_Controls().Add(this.radioButton3);

    // Set the location of the GroupBox. 
    this.groupBox1.set_Location(new System.Drawing.Point(56, 64));
    this.groupBox1.set_Size(new System.Drawing.Size(200, 150));

    // Set the text that will appear on the GroupBox.
    this.groupBox1.set_Text("Choose a Cursor Style");
    //
    // Add the GroupBox to the form.
    this.get_Controls().Add(this.groupBox1);
    //
} //InitializeRadioButtonsAndGroupBox    

Plattformen

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

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

Cursors-Klasse
Cursors-Member
System.Windows.Forms-Namespace
Cursor-Klasse