コード例 #1
0
ファイル: SoundInputBox.cs プロジェクト: kokose1234/HaSuite
 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
ファイル: SoundInputBox.cs プロジェクト: xnum/hasuite
        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);
        }