예제 #1
0
 public bool CanOpenFile(Framework.FileSystem.FilePath filePath)
 {
     return(new string[] { ".resx", ".resources" }.Contains(filePath.Extension));
 }
예제 #2
0
 public object ReadFile(Framework.FileSystem.FilePath file)
 {
     return(null);
 }
예제 #3
0
 public object ReadFile(Framework.FileSystem.FilePath file)
 {
     return(Bitmap.FromFile(file.FullPath));
 }
예제 #4
0
 public bool SupportsFile(Framework.FileSystem.FilePath file)
 {
     return(false);
 }
예제 #5
0
 public bool SupportsFile(Framework.FileSystem.FilePath file)
 {
     return(_supportedExtensions.Contains(file.Extension, StringComparer.OrdinalIgnoreCase));
 }