System.Windows.Forms.ComboBox.OnHandleCreated C# (CSharp) Метод

OnHandleCreated() защищенный Метод

protected OnHandleCreated ( EventArgs e ) : void
e System.EventArgs
Результат 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 ();
		}