Beispiel #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     //Reset the program
     this.fileManager = new FileManager();
     this.progressBar.Value = 0;
     this.filesLoadedLabel.Text = "0";
     this.destinationBtn.Text = "Select Destination Folder";
 }
Beispiel #2
0
        public Form1()
        {
            InitializeComponent();
            this.fileManager = new FileManager();

            this.folderPattern.Text = fileManager.NewFolderName;
            this.namePattern.Text = fileManager.NewFileName;
            this.extensions.Text = fileManager.PhotoMask;
            this.videoExtensions.Text = fileManager.VideoMask;
        }