IFileOpenDialog.cs 341 B

12345678910111213141516171819202122
  1. namespace SmartCoalApplication.SystemLayer
  2. {
  3. public interface IFileOpenDialog : IFileDialog
  4. {
  5. bool CheckFileExists
  6. {
  7. get;
  8. set;
  9. }
  10. bool Multiselect
  11. {
  12. get;
  13. set;
  14. }
  15. string[] FileNames
  16. {
  17. get;
  18. }
  19. }
  20. }