import System.Windows.Forms;
import System.Drawing;

var f : MyForm = new MyForm();
f.ShowDialog();

class MyForm extends Form {
	var lab1 : Label;
	function MyForm() {
		super();
		Size = new System.Drawing.Size(100, 80);
		Location = new Point(200, 50);
		StartPosition = FormStartPosition.Manual;
		lab1 = new Label();
		lab1.Text = "Berryz";
		lab1.Font = new System.Drawing.Font("MS UI Gothic", 12);
		lab1.Location = new Point(15, 20);
		Controls.Add(lab1);
	}
}
