ATML1671Allocator.forms.AvailableInstrumentsWindow.AvailableInstrumentsWindow C# (CSharp) Méthode

AvailableInstrumentsWindow() public méthode

public AvailableInstrumentsWindow ( ) : System
Résultat System
        public AvailableInstrumentsWindow()
        {
            InitializeComponent();
            lvInstruments.Columns.Add("Station");
            lvInstruments.Columns.Add("Model");
            lvInstruments.Columns.Add("Description");
            ATMLAllocator.Instance.TestStationSelected += Instance_TestStationSelected;
            //ATMLAllocator.Instance.InstrumentsCleared += Instance_InstrumentsCleared;
            lvInstruments.Columns[0].Width = -2;
            lvInstruments.Columns[1].Width = -2;
            lvInstruments.Columns[2].Width = -2;
            lvInstruments.Sorting = SortOrder.Ascending;
        }