MainForm.InsetDoubleBorderStyleRadioButton_CheckedChanged C# (CSharp) Method

InsetDoubleBorderStyleRadioButton_CheckedChanged() public method

public InsetDoubleBorderStyleRadioButton_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
	void InsetDoubleBorderStyleRadioButton_CheckedChanged (object sender, EventArgs e)
	{
		if (_insetDoubleBorderStyleRadioButton.Checked)
			_tableLayoutPanel.CellBorderStyle = TableLayoutPanelCellBorderStyle.InsetDouble;
	}
MainForm