BatchGuy.App.CreateAviSynthFilesForm.HandlesMenuItemCreateFFMSIndexBatchFileClick C# (CSharp) Méthode

HandlesMenuItemCreateFFMSIndexBatchFileClick() private méthode

private HandlesMenuItemCreateFFMSIndexBatchFileClick ( ) : void
Résultat void
        private void HandlesMenuItemCreateFFMSIndexBatchFileClick()
        {
            DialogResult result = MessageBox.Show("Create ffmsindex Batch File?", "Start Process?", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);

            if (result == System.Windows.Forms.DialogResult.Yes)
            {
                if (this.IsScreenValid() && IsScreenValidForFFMSIndex())
                {
                    gbScreen.SetEnabled(false);
                    this.WriteFFMSIndexBatchFile();
                }
            }
        }