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

ComboBox() public method

public ComboBox ( ) : System.Collections
return System.Collections
		public ComboBox ()
		{
			items = new ObjectCollection (this);
			DropDownStyle = ComboBoxStyle.DropDown;
			item_height = FontHeight + 2;
			//background_color = ThemeEngine.Current.ColorWindow;
			border_style = BorderStyle.None;
			
			drop_down_height = default_drop_down_height;
			flat_style = FlatStyle.Standard;
			
		}
		/* Events */