ATMLCommonLibrary.controls.connector.ConnectorLocationPinListControl.btnSelect_Click C# (CSharp) Method

btnSelect_Click() private method

private btnSelect_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnSelect_Click(object sender, EventArgs e)
        {
            var context = new ATMLSelectionCheckListContext();
            context.SelectionLabelText = "Connector";
            context.SelectionData = _connectors.Connector;
            context.SelectionListClassName = "Pins";
            context.ListItemClassName = "ATMLModelLibrary.model.common.ConnectorPin";

            var form = new ATMLSelectionCheckListForm(context);
            if (DialogResult.OK == form.ShowDialog())
            {
            }
        }