Control.Show Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Отображает элемент управления.
public:
void Show();
public void Show ();
member this.Show : unit -> unit
Public Sub Show ()
Примеры
В следующем примере кода отображается диалоговое окно о диалоговом окне и временно рисуется синий квадрат на его поверхности. В этом примере требуется, чтобы вы определили класс, производный от Form именованного 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 );
}
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
Комментарии
Отображение элемента управления эквивалентно заданию Visible свойства true
. Show После вызова Visible метода свойство возвращает значение true
до вызова Hide метода.