BatchGuy.App.CreateEAC3ToBatchForm.HandlesbtnEac3toOutputDirectoryClick C# (CSharp) Méthode

HandlesbtnEac3toOutputDirectoryClick() private méthode

private HandlesbtnEac3toOutputDirectoryClick ( ) : void
Résultat void
        private void HandlesbtnEac3toOutputDirectoryClick()
        {
            var fsd = new FolderSelectDialog();
            fsd.Title = "eac3to.exe output directory";
            if (fsd.ShowDialog(IntPtr.Zero))
            {
               txtEac3toOutputDirectory.Text = fsd.FileName;
                this.HandlescbEac3ToOutputDirectoryTypeSelectedIndexChanged();
            }
        }
CreateEAC3ToBatchForm