IFileSaveDialog.cs 356 B

1234567891011121314151617181920212223
  1. namespace SmartCoalApplication.SystemLayer
  2. {
  3. public interface IFileSaveDialog : IFileDialog
  4. {
  5. bool AddExtension
  6. {
  7. get;
  8. set;
  9. }
  10. bool OverwritePrompt
  11. {
  12. get;
  13. set;
  14. }
  15. string FileName
  16. {
  17. get;
  18. set;
  19. }
  20. }
  21. }