MDIApplication.ChildForm.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ChildForm));
			this.axMapControl1 = new ESRI.ArcGIS.Controls.AxMapControl();
			((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).BeginInit();
			this.SuspendLayout();
			// 
			// axMapControl1
			// 
			this.axMapControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.axMapControl1.Location = new System.Drawing.Point(0, 0);
			this.axMapControl1.Name = "axMapControl1";
			this.axMapControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMapControl1.OcxState")));
			this.axMapControl1.Size = new System.Drawing.Size(376, 272);
			this.axMapControl1.TabIndex = 0;
			this.axMapControl1.OnMapReplaced += new ESRI.ArcGIS.Controls.IMapControlEvents2_Ax_OnMapReplacedEventHandler(this.axMapControl1_OnMapReplaced);
			// 
			// ChildForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(376, 270);
			this.Controls.Add(this.axMapControl1);
			this.Name = "ChildForm";
			this.ShowInTaskbar = false;
			this.Text = "MDIChild";
			this.Load += new System.EventHandler(this.ChildForm_Load);
			((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).EndInit();
			this.ResumeLayout(false);

		}
		#endregion