private void BtnSelectSavePath_Click(object sender, EventArgs e)
        {
            var rePath = FileSelect.GetDirectorPath();

            if (rePath != "")
            {
                this.textBox_savePath.Text = reportDir;
            }
        }
Beispiel #2
0
 private void Btn_exportPathImg_Click(object sender, EventArgs e)
 {
     this.exportImageDirPath     = FileSelect.GetDirectorPath();
     this.lbx_exportPathImg.Text = this.exportImageDirPath;
 }
Beispiel #3
0
 private void Btn_selectImg_Click(object sender, EventArgs e)
 {
     this.currentSelectImagePath = FileSelect.GetDirectorPath();
     this.lbx_selectImg.Text     = this.currentSelectImagePath;
 }
Beispiel #4
0
 private void Btn_sameFile1_Click(object sender, EventArgs e)
 {
     this.sameSelectFile1Path = FileSelect.GetDirectorPath();
     this.lbx_sameFile1.Text  = this.sameSelectFile1Path;
 }
Beispiel #5
0
 private void Btn_sameSavePath_Click(object sender, EventArgs e)
 {
     this.sameOutputDirPath      = FileSelect.GetDirectorPath();
     this.lbx_sameOutputDir.Text = this.sameOutputDirPath;
 }
Beispiel #6
0
 private void Btn_dragSetPath_Click(object sender, EventArgs e)
 {
     this.dragOutpuDirpath      = FileSelect.GetDirectorPath();
     this.lbx_dragSavePath.Text = this.dragOutpuDirpath;
 }