IFileDialogUICallbacks.cs 420 B

12345678910111213
  1. using SmartCoalApplication.Base.Enum;
  2. using System;
  3. using System.Windows.Forms;
  4. namespace SmartCoalApplication.SystemLayer
  5. {
  6. public interface IFileDialogUICallbacks
  7. {
  8. FileOverwriteAction ShowOverwritePrompt(IWin32Window owner, string pathName);
  9. bool ShowError(IWin32Window owner, string pathName, Exception ex);
  10. IFileTransferProgressEvents CreateFileTransferProgressEvents();
  11. }
  12. }