home *** CD-ROM | disk | FTP | other *** search
- //************************************************
- // File: Form.cs (21-Aug-2002)
- // Author: G. Born www.borncity.de
- //
- // Empty MainClass, creates an empty form
- //
- // Compile with:
- // clc /t:Winexe <name>.vbs /Win32Icon:<name>.ico
- // /r:system.dll /r:system.windows.forms.dll
- // /r:system.drawing.dll
- //************************************************
-
- using System;
- using System.Windows.Forms;
-
- class MyForm : Form
- {
- public MyForm()
- {
- Text = "This is my form";
- Width = 250;
- Height = 150;
- }
-
- public static void Main(string[] args)
- {
- Application.Run(new MyForm());
- }
- }
-