コード例 #1
0
ファイル: FileTabPage.cs プロジェクト: calandoa/zxite
 public void reload()
 {
     byte[] buf = fileManager.fileStore.LoadFile(fullpath);
     if (buf != null)
     {
         scintillaControl.ClearAll();
         //scintillaControl.AddText( buf.Length  , buf );
         scintillaControl.SetSavePoint();
         SavePointReached(scintillaControl);
     }
 }