SIL.FieldWorks.Common.Widgets.FwComboBox.CreateDropDownBox C# (CSharp) Method

CreateDropDownBox() protected method

Creates the drop down box.
protected CreateDropDownBox ( ) : IDropDownBox
return IDropDownBox
		protected override IDropDownBox CreateDropDownBox()
		{
			// Create the list.
			var comboListBox = new ComboListBox();
			comboListBox.LaunchButton = m_button;	// set the button for processing
			comboListBox.SelectedIndexChanged += m_listBox_SelectedIndexChanged;
			comboListBox.SameItemSelected += m_listBox_SameItemSelected;
			comboListBox.TabStopControl = m_comboTextBox;
			return comboListBox;
		}