Add some more custom controls

This commit is contained in:
YoshiRulz 2020-02-29 07:23:22 +10:00
parent dff8a536f0
commit 5ab68c9784
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
6 changed files with 96 additions and 0 deletions

View File

@ -418,9 +418,11 @@
<Compile Update="CoreFeatureAnalysis.cs" SubType="Form" />
<Compile Update="CoreFeatureAnalysis.Designer.cs" DependentUpon="CoreFeatureAnalysis.cs" />
<EmbeddedResource Update="CoreFeatureAnalysis.resx" DependentUpon="CoreFeatureAnalysis.cs" />
<Compile Update="CustomControls/AutosizedLabel.cs" SubType="Component" />
<Compile Update="CustomControls/ExceptionBox.cs" SubType="Form" />
<Compile Update="CustomControls/ExceptionBox.designer.cs" DependentUpon="ExceptionBox.cs" />
<EmbeddedResource Update="CustomControls/ExceptionBox.resx" DependentUpon="ExceptionBox.cs" />
<Compile Update="CustomControls/FLPInGroupBox.cs" SubType="Component" />
<Compile Update="CustomControls/FolderBrowserDialogEx.cs" SubType="Component" />
<Compile Update="CustomControls/HexTextBox.cs" SubType="Component" />
<Compile Update="CustomControls/InputRoll/InputRoll.cs" SubType="Component" />
@ -432,6 +434,9 @@
<Compile Update="CustomControls/MsgBox.designer.cs" DependentUpon="MsgBox.cs" />
<EmbeddedResource Update="CustomControls/MsgBox.resx" DependentUpon="MsgBox.cs" />
<Compile Update="CustomControls/RepeatButton.cs" SubType="Component" />
<Compile Update="CustomControls/SingleColumnFLP.cs" SubType="Component" />
<Compile Update="CustomControls/SingleRowFLP.cs" SubType="Component" />
<Compile Update="CustomControls/TLPInGroupBox.cs" SubType="Component" />
<Compile Update="CustomControls/ToolStripEx.cs" SubType="Component" />
<Compile Update="CustomControls/TransparentTrackbar.cs" SubType="Component" />
<Compile Update="CustomControls/ViewportPanel.cs" SubType="Component" />

View File

@ -0,0 +1,18 @@
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk.CustomControls
{
public class AutosizedLabel : Label
{
public override bool AutoSize => true;
public AutosizedLabel() : base() {
Anchor = AnchorStyles.None;
}
public AutosizedLabel(string labelText) : this()
{
Text = labelText;
}
}
}

View File

@ -0,0 +1,19 @@
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk.CustomControls
{
/// <seealso cref="TLPInGroupBox"/>
public class FLPInGroupBox : GroupBox
{
public new ControlCollection Controls => InnerFLP.Controls;
public FlowLayoutPanel InnerFLP { get; } = new FlowLayoutPanel
{
Dock = DockStyle.Fill,
FlowDirection = FlowDirection.TopDown,
WrapContents = false
};
public FLPInGroupBox() : base() => base.Controls.Add(InnerFLP);
}
}

View File

@ -0,0 +1,15 @@
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk.CustomControls
{
/// <seealso cref="SingleRowFLP"/>
public class SingleColumnFLP : FlowLayoutPanel
{
public SingleColumnFLP() : base()
{
AutoSize = true;
FlowDirection = FlowDirection.TopDown;
WrapContents = false;
}
}
}

View File

@ -0,0 +1,14 @@
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk.CustomControls
{
/// <seealso cref="SingleColumnFLP"/>
public class SingleRowFLP : FlowLayoutPanel
{
public SingleRowFLP() : base()
{
AutoSize = true;
WrapContents = false;
}
}
}

View File

@ -0,0 +1,25 @@
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk.CustomControls
{
/// <seealso cref="FLPInGroupBox"/>
public class TLPInGroupBox : GroupBox
{
public new TableLayoutControlCollection Controls => InnerTLP.Controls;
public TableLayoutPanel InnerTLP { get; } = new TableLayoutPanel {
AutoSize = true,
Dock = DockStyle.Fill
};
public TLPInGroupBox() : base() => base.Controls.Add(InnerTLP);
public TLPInGroupBox(int columns, int rows) : this()
{
InnerTLP.ColumnCount = columns;
for (var i = columns; i != 0; i--) InnerTLP.ColumnStyles.Add(new ColumnStyle());
InnerTLP.RowCount = rows;
for (var i = rows; i != 0; i--) InnerTLP.RowStyles.Add(new RowStyle());
}
}
}