using System.Windows.Forms; namespace BizHawk.Client.EmuHawk.CustomControls { /// public sealed class SingleColumnFLP : FlowLayoutPanel { public SingleColumnFLP() { AutoSize = true; FlowDirection = FlowDirection.TopDown; WrapContents = false; } } }