ATMLCommonLibrary.forms.PortSelectionForm.PortSelectionForm C# (CSharp) Method

PortSelectionForm() public method

public PortSelectionForm ( InstrumentDescription instrument ) : System
instrument ATMLModelLibrary.model.equipment.InstrumentDescription
return System
        public PortSelectionForm(InstrumentDescription instrument)
        {
            InitializeComponent();
            InitResourcePortList();
            InitPhysicalPortList();
            Resize += new EventHandler(ResourcePortSelectionForm_Resize);
            this.instrument = instrument;
            DataToControls();
            btnOk.Click += new EventHandler(btnOk_Click);
        }