Example #1
0
 public FileBrowser(ListView listView, string path)
 {
     this.listView              = listView;
     this.compressor            = new Compress();
     listView.MouseDoubleClick += doubleClicked;
     currentPath = path;
     fillListView(path);
 }
Example #2
0
        public Form1()
        {
            InitializeComponent();
            boundDriveLetters();
            compress = new Compress();

            leftComboBox.SelectionChangeCommitted  += comboBoxChanged;
            rightComboBox.SelectionChangeCommitted += comboBoxChanged;

            leftTable.SelectedIndexChanged  += slectedChangeLeft;
            rightTable.SelectedIndexChanged += slectedChangeRight;
        }