IDynamicEditor.cs 350 B

12345678910111213141516171819
  1. namespace InABox.DynamicGrid
  2. {
  3. internal interface IDynamicEditor<T>
  4. {
  5. T GetValue();
  6. void SetValue(T value);
  7. bool IsChanged();
  8. void SetChanged(bool Changed);
  9. int DesiredHeight();
  10. }
  11. internal interface IDynamicEditor
  12. {
  13. object Value { get; set; }
  14. bool IsChanged();
  15. }
  16. }