System.Windows.Forms.ComboBox.OnHandleCreated C# (CSharp) Method

OnHandleCreated() protected method

protected OnHandleCreated ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnHandleCreated (EventArgs e)
		{
			base.OnHandleCreated (e);
			
			SetBoundsInternal (Left, Top, Width, PreferredHeight, BoundsSpecified.None);
			
			//if (textbox_ctrl != null)
			//	Controls.AddImplicit (textbox_ctrl);
			
			LayoutComboBox ();
			UpdateComboBoxBounds ();
		}