Пример #1
0
 public static bool Show(string title, out string name, out string path)
 {
     SoundInputBox form = new SoundInputBox(title);
     bool result = form.ShowDialog() == DialogResult.OK;
     name = form.nameResult;
     path = form.soundResult;
     return result;
 }
Пример #2
0
        public static bool Show(string title, out string name, out string path)
        {
            SoundInputBox form   = new SoundInputBox(title);
            bool          result = form.ShowDialog() == DialogResult.OK;

            name = form.nameResult;
            path = form.soundResult;
            return(result);
        }