public void changeDrive(string drive)
 {
     history = new History(FSScan.inDirectory(null, drive));
     initCommands();
     address = "";
     drawInView();
 }
        public FileManagerCore(ListBox lb, TextBox tb, ComboBox cb)
        {
            history = new History(FSScan.inDirectory(null, FSScan.getDrives()[0]));
            initCommands();

            this.lb = lb;
            this.tb = tb;
            this.cb = cb;

            cutFlag = false;

            lb.DisplayMember = "getFullName";
            drawInView();

            drawDrives();
        }
Example #3
0
 public PasteCommand(History history)
 {
     this.history = history;
 }
Example #4
0
 public UpCommand(History history)
 {
     this.history = history;
 }
Example #5
0
 public EnterCommand(History history)
 {
     this.history = history;
 }
Example #6
0
 public DeleteCommand(History history)
 {
     this.history = history;
 }