System Windows Forms C# by API

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
public class FormBoundsSetting : System.Windows.Forms.Form
{
  private System.ComponentModel.Container components = null;
  public FormBoundsSetting()
  {
    Top = 100;
    Left = 75;
    Height = 100;
    Width = 500;
    MessageBox.Show(Bounds.ToString(), "Current rect");
    InitializeComponent();
  }
  protected override void Dispose( bool disposing )
  {
    if( disposing )
    {
      if (components != null) 
      {
        components.Dispose();
      }
    }
    base.Dispose( disposing );    
  }
  private void InitializeComponent()
  {
    this.components = new System.ComponentModel.Container();
    this.Size = new System.Drawing.Size(300,300);
    this.Text = "Form1";
  }
  [STAThread]
  static void Main() 
  {
    Application.Run(new FormBoundsSetting());
  }
}