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

ComboBoxDataSource() public method

public ComboBoxDataSource ( ComboBox comboBox, object theObject ) : System.Collections
comboBox ComboBox
theObject object
return System.Collections
			public ComboBoxDataSource (ComboBox comboBox, object theObject)
			{
				dataObject = theObject;
				cbox = comboBox;
				if (theObject is IList)
				{
					//dataArray = new ObjectCollection (comboBox);
					//dataArray.AddRange ((theObject as IList).Cast<object> ().ToArray ());
				}
			}
			public ComboBoxDataSource (ComboBox comboBox)

Same methods

ComboBox.ComboBoxDataSource::ComboBoxDataSource ( ComboBox comboBox ) : System.Collections
ComboBox.ComboBoxDataSource::ComboBoxDataSource ( ComboBox comboBox, ObjectCollection Items ) : System.Collections