DynamicCustomEditorPage.cs 478 B

12345678910111213141516171819
  1. namespace InABox.DynamicGrid
  2. {
  3. public interface IDynamicCustomEditorPage<TType> : IDynamicEditorPage
  4. {
  5. //public abstract bool Ready { get; protected set; }
  6. //public abstract void AfterSave(object item);
  7. //public abstract void BeforeSave(object item);
  8. //public abstract string Caption();
  9. //public abstract void Load(object item);
  10. //public abstract Size MinimumSize();
  11. //public abstract int Order();
  12. }
  13. }