(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / Form1.cs
blob94a01052d4247c287b6839bfaf60254cdb206f74
1 using System;
2 using System.Drawing;
3 using System.Windows.Forms;
5 namespace WindowsApplication1
7 /// <summary>
8 /// Summary description for Form1.
9 /// </summary>
10 public class Form1 : System.Windows.Forms.Form
12 private Label label;
13 /// <summary>
14 /// Required designer variable.
15 /// </summary>
16 private System.ComponentModel.Container components = null;
18 public Form1()
21 // Required for Windows Form Designer support
23 InitializeComponent();
26 // TODO: Add any constructor code after InitializeComponent call
30 /// <summary>
31 /// Clean up any resources being used.
32 /// </summary>
33 protected override void Dispose( bool disposing )
35 if( disposing )
37 if (components != null)
39 components.Dispose();
42 base.Dispose( disposing );
45 #region Windows Form Designer generated code
46 /// <summary>
47 /// Required method for Designer support - do not modify
48 /// the contents of this method with the code editor.
49 /// </summary>
50 private void InitializeComponent()
52 //
53 // Form1
54 //
55 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
56 this.ClientSize = new System.Drawing.Size(292, 273);
57 this.Name = "Form1";
58 this.Text = "Form1";
59 this.label = new Label ();
60 this.label.Text = "test";
62 this.Controls.AddRange(new System.Windows.Forms.Control[] { this.label });
66 #endregion
68 /// <summary>
69 /// The main entry point for the application.
70 /// </summary>
71 [STAThread]
72 static void Main()
74 Application.Run(new Form1());