Control.Show Methode

Definition

Zeigt dem Benutzer das Steuerelement an.

public:
 void Show();
public void Show ();
member this.Show : unit -> unit
Public Sub Show ()

Beispiele

Im folgenden Codebeispiel wird ein Dialogfeld angezeigt und vorübergehend ein blaues Quadrat auf der Oberfläche gezogen. In diesem Beispiel ist erforderlich, dass Sie eine Klasse definiert haben, die von benanntem AboutDialogAbgeleitet Form wird.

private:
   void menuItemHelpAbout_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Create and display a modeless about dialog box.
      AboutDialog^ about = gcnew AboutDialog;
      about->Show();
      
      // Draw a blue square on the form.
      /* NOTE: This is not a persistent object, it will no longer be
                  * visible after the next call to OnPaint. To make it persistent,
                  * override the OnPaint method and draw the square there */
      Graphics^ g = about->CreateGraphics();
      g->FillRectangle( Brushes::Blue, 10, 10, 50, 50 );
   }
private void menuItemHelpAbout_Click(object sender, EventArgs e)
{
   // Create and display a modless about dialog box.
   AboutDialog about = new AboutDialog();
   about.Show();

   // Draw a blue square on the form.
   /* NOTE: This is not a persistent object, it will no longer be
      * visible after the next call to OnPaint. To make it persistent, 
      * override the OnPaint method and draw the square there */
   Graphics g = about.CreateGraphics();
   g.FillRectangle(Brushes.Blue, 10, 10, 50, 50);
}
Private Sub menuItemHelpAbout_Click(sender As Object, _
  e As EventArgs) Handles menuItemHelpAbout.Click
   ' Create and display a modless about dialog box.
   Dim about As New AboutDialog()
   about.Show()
   
   ' Draw a blue square on the form.
   ' NOTE: This is not a persistent object, it will no longer be
   ' visible after the next call to OnPaint. To make it persistent, 
   ' override the OnPaint method and draw the square there 
   Dim g As Graphics = about.CreateGraphics()
   g.FillRectangle(Brushes.Blue, 10, 10, 50, 50)
End Sub

Hinweise

Das Anzeigen des Steuerelements entspricht dem Festlegen der Visible Eigenschaft auf true. Nachdem die Show Methode aufgerufen wurde, gibt die Visible Eigenschaft einen Wert zurück true , bis die Hide Methode aufgerufen wird.

Gilt für

Siehe auch