CustomDialog.cs 350 B

12345678910111213141516
  1. using PixiEditor.Helpers;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. namespace PixiEditor.Models.Dialogs
  10. {
  11. public abstract class CustomDialog : NotifyableObject
  12. {
  13. public abstract bool ShowDialog();
  14. }
  15. }