public VerticalRowManager(ToolStripPanelRow owner) : base(owner) { owner.SuspendLayout(); FlowLayoutSettings.WrapContents = false; FlowLayoutSettings.FlowDirection = FlowDirection.TopDown; owner.ResumeLayout(false); }
public HorizontalRowManager(ToolStripPanelRow owner) : base(owner) { owner.SuspendLayout(); FlowLayoutSettings.WrapContents = false; FlowLayoutSettings.FlowDirection = FlowDirection.LeftToRight; owner.ResumeLayout(false); }
public HorizontalRowManager(ToolStripPanelRow owner) : base(owner) { owner.SuspendLayout(); base.FlowLayoutSettings.WrapContents = false; base.FlowLayoutSettings.FlowDirection = FlowDirection.LeftToRight; owner.ResumeLayout(false); }
public VerticalRowManager(ToolStripPanelRow owner) : base(owner) { owner.SuspendLayout(); base.FlowLayoutSettings.WrapContents = false; base.FlowLayoutSettings.FlowDirection = FlowDirection.TopDown; owner.ResumeLayout(false); }