public static Editor Open(string file) { var e = new Editor(Document.Load(file)); e.Show(); return e; }
public static Editor New() { var e = new Editor(new Document()); e.Show(); return e; }