IMasterDetailSettings.cs 309 B

123456789101112131415
  1. using System;
  2. using InABox.DynamicGrid;
  3. namespace InABox.Wpf;
  4. public interface ISplitPanelSettings
  5. {
  6. public DynamicSplitPanelView ViewType { get; set; }
  7. public double AnchorWidth { get; set; }
  8. }
  9. public interface IMasterDetailSettings : ISplitPanelSettings
  10. {
  11. public Guid MasterID { get; set; }
  12. }