Simplest form code: set window title : Form Frame Window « GUI Windows Form « C# / C Sharp
- C# / C Sharp
- GUI Windows Form
- Form Frame Window
Simplest form code: set window title

public class MyForm : System.Windows.Forms.Form{
public MyForm(){
Text = "Hello World";
}
public static void Main() {
System.Windows.Forms.Application.Run(new MyForm());
}
}
Related examples in the same category