예제 #1
0
        private void UpdateSpecList(SpectType myType)
        {
            specLB.Items.Clear();
            List <string> myList = new List <string>();

            myList = myMgr.GetSpectrometerList(myType);

            for (int i = 0; i < myList.Count; i++)
            {
                specLB.Items.Add(myList[i]);
            }

            selType = myType;
        }