예제 #1
0
파일: EditorView.cs 프로젝트: nzysoft/Eto
        public override async Task Load(FileOpenInformation fileOpenInformation)
        {
            await content.Load(fileOpenInformation);

            ContentName = fileOpenInformation.FileName;
            Project     = fileOpenInformation.Project;
            IsDirty     = false;
        }
예제 #2
0
 public override Task Load(FileOpenInformation fileOpenInformation)
 {
     ContentName = fileOpenInformation.FileName;
     return(content.Load(ContentName));
 }
예제 #3
0
파일: EditorView.cs 프로젝트: yaram/Eto
 public override async Task Load(FileOpenInformation fileOpenInformation)
 {
     await content.Load(fileOpenInformation);
 }