コード例 #1
0
        public Document OpenDocument(FileInfo fileInfo)
        {
            control.SetContent(ReadFile(fileInfo));
            var doc = new HelpDocument(fileInfo);

            return(doc);
        }
コード例 #2
0
ファイル: HelpEditor.cs プロジェクト: rizwan3d/elalang
 public Document OpenDocument(FileInfo fileInfo)
 {
     control.SetContent(ReadFile(fileInfo));
     var doc = new HelpDocument(fileInfo);
     return doc;
 }
コード例 #3
0
ファイル: HelpEditor.cs プロジェクト: rizwan3d/elalang
 public Document CreateDocument(string title)
 {
     var doc = new HelpDocument(title);
     return doc;
 }
コード例 #4
0
        public Document CreateDocument(string title)
        {
            var doc = new HelpDocument(title);

            return(doc);
        }