예제 #1
0
        public void SelectDrive()
        {
            string[]   drvNames  = CCommon.GeAllAvaibleDrivesPaths();
            CLocalMenu localMenu = new CLocalMenu(left + 1, top + 3, 20, 5, drvNames);
            int        choice    = localMenu.Work();

            if (choice != -1)
            {
                SetPath(drvNames[choice].Trim());
            }
            else
            {
                ShowListOfItems();
            }
        }