BelhardTraining.LessonMultithreading.RunForm.OnBrowseButtonClick C# (CSharp) Метод

OnBrowseButtonClick() приватный Метод

private OnBrowseButtonClick ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void OnBrowseButtonClick(object sender, EventArgs e)
        {
            if (openFileDialog.ShowDialog() == DialogResult.OK)
            {
                textBoxPath.Text = openFileDialog.FileName;
            }
        }