The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Control::Show Method ()
.NET Framework (current version)
Displays the control to the user.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example displays an about dialog box and temporarily draws a blue square on its surface. This example requires that you have defined a class that derives from Form named AboutDialog.
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 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: