Form.Show : Form « System.Windows.Forms « C# / C Sharp by API
- C# / C Sharp by API
- System.Windows.Forms
- Form
Form.Show
using System.Windows.Forms;
class ShowForm
{
public static void Main()
{
Form form = new Form();
form.Show();
}
}
Related examples in the same category