/// <summary>
 /// Initializes a new instance of the <see cref="DetailPanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 /// <param name="parent">parent split panel</param>
 public DetailPanelContainer(MasterPanelContainer parent, UIViewController panel, float offsetX)
     : base(parent, panel)
 {
     OffsetX = offsetX;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MenuPanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 /// <param name="parent">parent split panel</param>
 public SubMenuPanelContainer(MasterPanelContainer parent, UIViewController panel, float width)
     : base(parent, panel)
 {
     Width = width;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 protected PanelContainer(MasterPanelContainer parent, UIViewController view)
 {
     _parent   = parent;
     PanelView = view;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MenuPanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 /// <param name="parent">parent split panel</param>
 public MenuPanelContainer(MasterPanelContainer parent, UIViewController panel, float width)
     : base(parent, panel)
 {
     Width = width;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 protected PanelContainer(MasterPanelContainer parent, UIViewController view)
 {
     _parent = parent;
     PanelView = view;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DetailPanelContainer"/> class.
 /// </summary>
 /// <param name="panel">Panel.</param>
 /// <param name="parent">parent split panel</param>
 public DetailPanelContainer(MasterPanelContainer parent, UIViewController panel, float offsetX)
     : base(parent, panel)
 {
     OffsetX = offsetX;
 }