private void btnRootPath_Click()

in traceabilitytool/mainform.cs [51:64]


        private void btnRootPath_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog folderDlg = new FolderBrowserDialog();
            if (folderDlg.ShowDialog() == DialogResult.OK)
            {
                txtRootPath.Text = folderDlg.SelectedPath;
                lblRootPath.Text = "";
                btnShowOutput.Enabled = true;
            }
            else
            {
                return;
            }
        }