- using System;
- using InABox.DynamicGrid;
- namespace InABox.Wpf;
- public interface ISplitPanelSettings
- {
- public DynamicSplitPanelView ViewType { get; set; }
- public double AnchorWidth { get; set; }
- }
- public interface IMasterDetailSettings : ISplitPanelSettings
- {
- public Guid MasterID { get; set; }
- }
|