コード例 #1
0
        public static Editor Open(string file)
        {
            var e = new Editor(Document.Load(file));

            e.Show();
            return(e);
        }
コード例 #2
0
        public static Editor New()
        {
            var e = new Editor(new Document());

            e.Show();
            return(e);
        }
コード例 #3
0
ファイル: Editor.cs プロジェクト: mockfrog/ttaudio
 public static Editor Open(string file)
 {
     var e = new Editor(Document.Load(file));
     e.Show();
     return e;
 }
コード例 #4
0
ファイル: Editor.cs プロジェクト: mockfrog/ttaudio
 public static Editor New()
 {
     var e = new Editor(new Document());
     e.Show();
     return e;
 }