IFileDialog.cs 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. namespace SmartCoalApplication.SystemLayer
  8. {
  9. public interface IFileDialog
  10. : IDisposable
  11. {
  12. bool CheckPathExists
  13. {
  14. get;
  15. set;
  16. }
  17. bool DereferenceLinks
  18. {
  19. get;
  20. set;
  21. }
  22. string Filter
  23. {
  24. get;
  25. set;
  26. }
  27. int FilterIndex
  28. {
  29. get;
  30. set;
  31. }
  32. string InitialDirectory
  33. {
  34. get;
  35. set;
  36. }
  37. string Title
  38. {
  39. set;
  40. }
  41. DialogResult ShowDialog(IWin32Window owner, IFileDialogUICallbacks uiCallbacks);
  42. }
  43. }