Form1.cs
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows.Forms;namespace_0063 {-
publicpartialclassForm1 : Form { -
publicForm1() { -
InitializeComponent(); -
} -
privatevoidbutton1_Click(objectsender, EventArgs e) { -
DialogResult dialogResult = folderBrowserDialog1.ShowDialog(); -
if(dialogResult == DialogResult.OK) { -
textBox1.Text = folderBrowserDialog1.SelectedPath; -
textBox1.Visible =true; -
} -
} -
privatevoidbutton2_Click(objectsender, EventArgs e) { -
textBox1.Clear(); -
textBox1.Visible =false; -
} -
} }
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows.Forms;namespace_0063 {-
publicpartialclassForm1 : Form { -
publicForm1() { -
InitializeComponent(); -
} -
privatevoidbutton1_Click(objectsender, EventArgs e) { -
DialogResult dialogResult = folderBrowserDialog1.ShowDialog(); -
if(dialogResult == DialogResult.OK) { -
textBox1.Text = folderBrowserDialog1.SelectedPath; -
textBox1.Visible =true; -
} -
} -
privatevoidbutton2_Click(objectsender, EventArgs e) { -
textBox1.Clear(); -
textBox1.Visible =false; -
} -
} }