MainForm.DropDownListRadioButton_CheckedChanged C# (CSharp) Method

DropDownListRadioButton_CheckedChanged() public method

public DropDownListRadioButton_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
	void DropDownListRadioButton_CheckedChanged (object sender, EventArgs e)
	{
		if (_dropDownListRadioButton.Checked)
			_comboBox.DropDownStyle = ComboBoxStyle.DropDownList;
	}
MainForm