ASS8.Klient.ASS8___Konfiguracja.btnSciezka_Click C# (CSharp) Method

btnSciezka_Click() private method

private btnSciezka_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void btnSciezka_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog fbd = new FolderBrowserDialog();
            if (fbd.ShowDialog() == DialogResult.OK)
            {
                txtSciezka.Text = fbd.SelectedPath;
            }
        }