diff --git a/MaterialSkin/ColorScheme.cs b/MaterialSkin/ColorScheme.cs
index af25baf4..ce520ae7 100644
--- a/MaterialSkin/ColorScheme.cs
+++ b/MaterialSkin/ColorScheme.cs
@@ -4,23 +4,29 @@ namespace MaterialSkin
public class ColorScheme
{
- public readonly Color PrimaryColor, DarkPrimaryColor, LightPrimaryColor, AccentColor, TextColor;
+ public readonly Color PrimaryColor, DarkPrimaryColor, LightPrimaryColor, AccentColor, TextColor, SuccessColor, InfoColor, WarningColor, DangerColor;
public readonly Pen PrimaryPen, DarkPrimaryPen, LightPrimaryPen, AccentPen, TextPen;
public readonly Brush PrimaryBrush, DarkPrimaryBrush, LightPrimaryBrush, AccentBrush, TextBrush;
- public ColorScheme() : this(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE)
+ public ColorScheme() : this(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE, Primary.Green900, Primary.LightBlue900, Primary.Amber900, Primary.Red900)
{
}
- public ColorScheme(Primary primary, Primary darkPrimary, Primary lightPrimary, Accent accent, TextShade textShade)
+ public ColorScheme(Primary primary, Primary darkPrimary, Primary lightPrimary, Accent accent, TextShade textShade, Primary successColor = Primary.Green900, Primary infoColor = Primary.LightBlue900, Primary warningColor = Primary.Amber900, Primary dangerColor = Primary.Red900)
{
//Color
PrimaryColor = ((int)primary).ToColor();
DarkPrimaryColor = ((int)darkPrimary).ToColor();
LightPrimaryColor = ((int)lightPrimary).ToColor();
AccentColor = ((int)accent).ToColor();
+
+ SuccessColor = ((int)successColor).ToColor();
+ InfoColor = ((int)infoColor).ToColor();
+ WarningColor = ((int)warningColor).ToColor();
+ DangerColor = ((int)dangerColor).ToColor();
+
TextColor = ((int)textShade).ToColor();
//Pen
@@ -38,13 +44,19 @@ public ColorScheme(Primary primary, Primary darkPrimary, Primary lightPrimary, A
TextBrush = new SolidBrush(TextColor);
}
- public ColorScheme(int primary, int darkPrimary, int lightPrimary, int accent, TextShade textShade)
+ public ColorScheme(int primary, int darkPrimary, int lightPrimary, int accent, TextShade textShade, int successColor = (int)Primary.Green900, int infoColor = (int)Primary.LightBlue900, int warningColor = (int)Primary.Amber900, int dangerColor = (int)Primary.Red900)
{
//Color
- PrimaryColor = ((int)primary).ToColor();
- DarkPrimaryColor = ((int)darkPrimary).ToColor();
- LightPrimaryColor = ((int)lightPrimary).ToColor();
- AccentColor = ((int)accent).ToColor();
+ PrimaryColor = primary.ToColor();
+ DarkPrimaryColor = darkPrimary.ToColor();
+ LightPrimaryColor = lightPrimary.ToColor();
+ AccentColor = accent.ToColor();
+
+ SuccessColor = successColor.ToColor();
+ InfoColor = infoColor.ToColor();
+ WarningColor = warningColor.ToColor();
+ DangerColor = dangerColor.ToColor();
+
TextColor = ((int)textShade).ToColor();
//Pen
@@ -62,13 +74,26 @@ public ColorScheme(int primary, int darkPrimary, int lightPrimary, int accent, T
TextBrush = new SolidBrush(TextColor);
}
- public ColorScheme(Color primary, Color darkPrimary, Color lightPrimary, Color accent, TextShade textShade)
+ ///
+ /// Sets color scheme for the theme
+ ///
+ /// If null is set to default value
+ /// If null is set to default value
+ /// If null is set to default value
+ /// If null is set to default value
+ public ColorScheme(Color primary, Color darkPrimary, Color lightPrimary, Color accent, TextShade textShade, Color? successColor = null, Color? infoColor = null, Color? warningColor = null, Color? dangerColor = null)
{
//Color
PrimaryColor = primary;
DarkPrimaryColor = darkPrimary;
LightPrimaryColor = lightPrimary;
AccentColor = accent;
+
+ SuccessColor = successColor ?? Color.Green;
+ InfoColor = infoColor ?? Color.Cyan;
+ WarningColor = warningColor ?? Color.Goldenrod;
+ DangerColor = dangerColor ?? Color.Red;
+
TextColor = ((int)textShade).ToColor();
//Pen
diff --git a/MaterialSkin/Controls/MaterialButton.cs b/MaterialSkin/Controls/MaterialButton.cs
index 0dd9d164..e9ef9f07 100644
--- a/MaterialSkin/Controls/MaterialButton.cs
+++ b/MaterialSkin/Controls/MaterialButton.cs
@@ -24,7 +24,7 @@ public class MaterialButton : Button, IMaterialControl
// icons
private TextureBrush iconsBrushes;
-
+
///
/// Gets or sets the Depth
///
@@ -50,6 +50,17 @@ public enum MaterialButtonType
Contained
}
+ public enum MaterialButtonColorType
+ {
+ Primary,
+ Secondary,
+ Tertiary,
+ Success,
+ Info,
+ Warning,
+ Danger
+ }
+
public enum MaterialButtonDensity
{
Default,
@@ -62,7 +73,7 @@ public enum MaterialButtonDensity
[Category("Material Skin")]
public bool UseAccentColor
{
- get { return useAccentColor; }
+ get => useAccentColor;
set { useAccentColor = value; Invalidate(); }
}
@@ -72,7 +83,7 @@ public bool UseAccentColor
///
public bool HighEmphasis
{
- get { return highEmphasis; }
+ get => highEmphasis;
set { highEmphasis = value; Invalidate(); }
}
@@ -81,28 +92,36 @@ public bool HighEmphasis
[Description("Draw Shadows around control")]
public bool DrawShadows
{
- get { return drawShadows; }
+ get => drawShadows;
set { drawShadows = value; Invalidate(); }
}
[Category("Material Skin")]
+ [Description("Sets the type of the button")]
public MaterialButtonType Type
{
- get { return type; }
+ get => type;
set { type = value; preProcessIcons(); Invalidate(); }
}
+ [Category("Material Skin"), DefaultValue(MaterialButtonColorType.Primary), Description("Sets button color, works only when UseAccentColor is false")]
+ public MaterialButtonColorType ColorType
+ {
+ get => colorType;
+ set { colorType = value; preProcessIcons(); Invalidate(); }
+ }
+
[Category("Material Skin")]
///
/// Gets or sets a value indicating button density
///
public MaterialButtonDensity Density
{
- get { return _density; }
- set
- {
+ get => _density;
+ set
+ {
_density = value;
- if (_density== MaterialButtonDensity.Dense)
+ if (_density == MaterialButtonDensity.Dense)
Size = new Size(Size.Width, HEIGHTDENSE);
else
Size = new Size(Size.Width, HEIGHTDEFAULT);
@@ -198,7 +217,9 @@ private void RemoveShadowPaintEvent(Control control, PaintEventHandler shadowPai
private bool highEmphasis;
private bool useAccentColor;
private MaterialButtonType type;
+ private MaterialButtonColorType colorType;
private MaterialButtonDensity _density;
+ private int radius;
[Category("Material Skin")]
///
@@ -206,7 +227,7 @@ private void RemoveShadowPaintEvent(Control control, PaintEventHandler shadowPai
///
public Image Icon
{
- get { return _icon; }
+ get => _icon;
set
{
_icon = value;
@@ -221,6 +242,24 @@ public Image Icon
}
}
+ [Category("Material Skin"), DefaultValue(4), Description("Sets the border radius in px")]
+ public int Radius
+ {
+ get => radius;
+ set
+ {
+ if (value <= 0)
+ value = 4;
+
+ if ((Math.Min(Width, Height) / 2) < value)
+ value = (Math.Min(Width, Height) / 2);
+
+ radius = value;
+
+ Invalidate();
+ }
+ }
+
[DefaultValue(true)]
public override bool AutoSize
{
@@ -237,6 +276,7 @@ public MaterialButton()
HighEmphasis = true;
UseAccentColor = false;
Type = MaterialButtonType.Contained;
+ ColorType = MaterialButtonColorType.Primary;
Density = MaterialButtonDensity.Default;
NoAccentTextColor = Color.Empty;
CharacterCasing = CharacterCasingEnum.Upper;
@@ -274,6 +314,7 @@ public MaterialButton()
AutoSize = true;
Margin = new Padding(4, 6, 4, 6);
Padding = new Padding(0);
+ Radius = radius <= 0 ? 4 : radius;
}
///
@@ -281,11 +322,11 @@ public MaterialButton()
///
public override string Text
{
- get { return base.Text; }
+ get => base.Text;
set
{
base.Text = value;
- if (!String.IsNullOrEmpty(value))
+ if (!string.IsNullOrEmpty(value))
_textSize = CreateGraphics().MeasureString(value.ToUpper(), SkinManager.getFontByType(MaterialSkinManager.fontType.Button));
else
{
@@ -316,7 +357,7 @@ private void drawShadowOnParent(object sender, PaintEventArgs e)
Graphics gp = e.Graphics;
Rectangle rect = new Rectangle(Location, ClientRectangle.Size);
gp.SmoothingMode = SmoothingMode.AntiAlias;
- DrawHelper.DrawSquareShadow(gp, rect);
+ DrawHelper.DrawSquareShadow(gp, rect, Radius);
}
private void preProcessIcons()
@@ -325,7 +366,7 @@ private void preProcessIcons()
int newWidth, newHeight;
//Resize icon if greater than ICON_SIZE
- if (Icon.Width> ICON_SIZE || Icon.Height > ICON_SIZE)
+ if (Icon.Width > ICON_SIZE || Icon.Height > ICON_SIZE)
{
//calculate aspect ratio
float aspect = Icon.Width / (float)Icon.Height;
@@ -394,12 +435,13 @@ private void preProcessIcons()
}
// added processed image to brush for drawing
- TextureBrush textureBrushGray = new TextureBrush(bgray);
-
- textureBrushGray.WrapMode = System.Drawing.Drawing2D.WrapMode.Clamp;
+ TextureBrush textureBrushGray = new TextureBrush(bgray)
+ {
+ WrapMode = System.Drawing.Drawing2D.WrapMode.Clamp
+ };
// Translate the brushes to the correct positions
- var iconRect = new Rectangle(8, (Height/2 - ICON_SIZE / 2), ICON_SIZE, ICON_SIZE);
+ Rectangle iconRect = new Rectangle(8, (Height / 2 - ICON_SIZE / 2), ICON_SIZE, ICON_SIZE);
textureBrushGray.TranslateTransform(iconRect.X + iconRect.Width / 2 - IconResized.Width / 2,
iconRect.Y + iconRect.Height / 2 - IconResized.Height / 2);
@@ -413,7 +455,7 @@ private void preProcessIcons()
/// The pevent
protected override void OnPaint(PaintEventArgs pevent)
{
- var g = pevent.Graphics;
+ Graphics g = pevent.Graphics;
g.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
g.SmoothingMode = SmoothingMode.AntiAlias;
@@ -427,10 +469,10 @@ protected override void OnPaint(PaintEventArgs pevent)
RectangleF buttonRectF = new RectangleF(ClientRectangle.Location, ClientRectangle.Size);
buttonRectF.X -= 0.5f;
buttonRectF.Y -= 0.5f;
- GraphicsPath buttonPath = DrawHelper.CreateRoundRect(buttonRectF, 4);
+ GraphicsPath buttonPath = DrawHelper.CreateRoundRect(buttonRectF, Radius);
// button shadow (blend with form shadow)
- DrawHelper.DrawSquareShadow(g, ClientRectangle);
+ DrawHelper.DrawSquareShadow(g, ClientRectangle, Radius);
if (Type == MaterialButtonType.Contained)
{
@@ -446,9 +488,42 @@ protected override void OnPaint(PaintEventArgs pevent)
// High emphasis
else if (HighEmphasis)
{
- g.FillPath(UseAccentColor ? SkinManager.ColorScheme.AccentBrush : SkinManager.ColorScheme.PrimaryBrush, buttonPath);
+ Brush usedBrush = SkinManager.ColorScheme.AccentBrush;
+
+ if (!UseAccentColor)
+ {
+ switch (ColorType)
+ {
+ case MaterialButtonColorType.Primary:
+ usedBrush = SkinManager.ColorScheme.PrimaryBrush;
+ break;
+ case MaterialButtonColorType.Secondary:
+ usedBrush = SkinManager.ColorScheme.DarkPrimaryBrush;
+ break;
+ case MaterialButtonColorType.Tertiary:
+ usedBrush = SkinManager.ColorScheme.LightPrimaryBrush;
+ break;
+ case MaterialButtonColorType.Success:
+ usedBrush = new SolidBrush(SkinManager.ColorScheme.SuccessColor);
+ break;
+ case MaterialButtonColorType.Info:
+ usedBrush = new SolidBrush(SkinManager.ColorScheme.InfoColor);
+ break;
+ case MaterialButtonColorType.Warning:
+ usedBrush = new SolidBrush(SkinManager.ColorScheme.WarningColor);
+ break;
+ case MaterialButtonColorType.Danger:
+ usedBrush = new SolidBrush(SkinManager.ColorScheme.DangerColor);
+ break;
+ default:
+ usedBrush = SkinManager.ColorScheme.PrimaryBrush;
+ break;
+ }
+ }
+
+ g.FillPath(usedBrush, buttonPath);
}
- // Mormal
+ // Normal
else
{
using (SolidBrush normalBrush = new SolidBrush(SkinManager.BackgroundColor))
@@ -462,15 +537,42 @@ protected override void OnPaint(PaintEventArgs pevent)
g.Clear(Parent.BackColor);
}
+ #region get hover/focus color
+ Color hoverFocusColor = Color.Transparent;
+ if (UseAccentColor)
+ {
+ if (HighEmphasis && Type == MaterialButtonType.Contained)
+ {
+ // Contained with Emphasis - with accent
+ hoverFocusColor = SkinManager.ColorScheme.AccentColor.Lighten(0.5f);
+ }
+ else
+ {
+ // Not Contained Or Low Emphasis - with accent
+ hoverFocusColor = SkinManager.ColorScheme.AccentColor;
+ }
+ }
+ else
+ {
+ if (Type == MaterialButtonType.Contained && HighEmphasis)
+ {
+ // Contained with Emphasis without accent
+ hoverFocusColor = GetColorByType().Lighten(0.5f);
+ }
+ else
+ {
+ // Normal or Emphasis without accent
+ hoverFocusColor = GetColorByType();
+ }
+ }
+ #endregion
+
//Hover
if (hoverAnimProgress > 0)
{
using (SolidBrush hoverBrush = new SolidBrush(Color.FromArgb(
- (int)(HighEmphasis && Type == MaterialButtonType.Contained ? hoverAnimProgress * 80 : hoverAnimProgress * SkinManager.BackgroundHoverColor.A), (UseAccentColor ? (HighEmphasis && Type == MaterialButtonType.Contained ?
- SkinManager.ColorScheme.AccentColor.Lighten(0.5f) : // Contained with Emphasis - with accent
- SkinManager.ColorScheme.AccentColor) : // Not Contained Or Low Emphasis - with accent
- (Type == MaterialButtonType.Contained && HighEmphasis ? SkinManager.ColorScheme.LightPrimaryColor : // Contained with Emphasis without accent
- SkinManager.ColorScheme.PrimaryColor)).RemoveAlpha()))) // Normal or Emphasis without accent
+ (int)(HighEmphasis && Type == MaterialButtonType.Contained ? hoverAnimProgress * 80 : hoverAnimProgress * SkinManager.BackgroundHoverColor.A),
+ hoverFocusColor.RemoveAlpha())))
{
g.FillPath(hoverBrush, buttonPath);
}
@@ -480,11 +582,8 @@ protected override void OnPaint(PaintEventArgs pevent)
if (focusAnimProgress > 0)
{
using (SolidBrush focusBrush = new SolidBrush(Color.FromArgb(
- (int)(HighEmphasis && Type == MaterialButtonType.Contained ? focusAnimProgress * 80 : focusAnimProgress * SkinManager.BackgroundFocusColor.A), (UseAccentColor ? (HighEmphasis && Type == MaterialButtonType.Contained ?
- SkinManager.ColorScheme.AccentColor.Lighten(0.5f) : // Contained with Emphasis - with accent
- SkinManager.ColorScheme.AccentColor) : // Not Contained Or Low Emphasis - with accent
- (Type == MaterialButtonType.Contained && HighEmphasis ? SkinManager.ColorScheme.LightPrimaryColor : // Contained with Emphasis without accent
- SkinManager.ColorScheme.PrimaryColor)).RemoveAlpha()))) // Normal or Emphasis without accent
+ (int)(HighEmphasis && Type == MaterialButtonType.Contained ? focusAnimProgress * 80 : focusAnimProgress * SkinManager.BackgroundFocusColor.A),
+ hoverFocusColor.RemoveAlpha())))
{
g.FillPath(focusBrush, buttonPath);
}
@@ -492,7 +591,21 @@ protected override void OnPaint(PaintEventArgs pevent)
if (Type == MaterialButtonType.Outlined)
{
- using (Pen outlinePen = new Pen(Enabled ? SkinManager.DividersAlternativeColor : SkinManager.DividersColor, 1))
+ Color outColor = SkinManager.DividersColor;
+ if (Enabled)
+ {
+ if (UseAccentColor)
+ outColor = SkinManager.ColorScheme.AccentColor;
+ else if (highEmphasis)
+ {
+ outColor = GetColorByType();
+ }
+
+ if (outColor == SkinManager.DividersColor)
+ outColor = SkinManager.DividersAlternativeColor;
+ }
+
+ using (Pen outlinePen = new Pen(outColor, 1))
{
buttonRectF.X += 0.5f;
buttonRectF.Y += 0.5f;
@@ -503,21 +616,51 @@ protected override void OnPaint(PaintEventArgs pevent)
//Ripple
if (_animationManager.IsAnimating())
{
- g.Clip = new Region(buttonRectF);
- for (var i = 0; i < _animationManager.GetAnimationCount(); i++)
+ //g.Clip = new Region(buttonRectF);
+ g.Clip = new Region(buttonPath);
+ for (int i = 0; i < _animationManager.GetAnimationCount(); i++)
{
- var animationValue = _animationManager.GetProgress(i);
- var animationSource = _animationManager.GetSource(i);
-
- using (Brush rippleBrush = new SolidBrush(
- Color.FromArgb((int)(100 - (animationValue * 100)), // Alpha animation
- (Type == MaterialButtonType.Contained && HighEmphasis ? (UseAccentColor ?
- SkinManager.ColorScheme.AccentColor.Lighten(0.5f) : // Emphasis with accent
- SkinManager.ColorScheme.LightPrimaryColor) : // Emphasis
- (UseAccentColor ? SkinManager.ColorScheme.AccentColor : // Normal with accent
- SkinManager.Theme == MaterialSkinManager.Themes.LIGHT ? SkinManager.ColorScheme.PrimaryColor : SkinManager.ColorScheme.LightPrimaryColor))))) // Normal
+ double animationValue = _animationManager.GetProgress(i);
+ Point animationSource = _animationManager.GetSource(i);
+
+ Color rippleColor;
+ if (Type == MaterialButtonType.Contained && HighEmphasis)
+ {
+ if (UseAccentColor)
+ {
+ // Emphasis with accent
+ rippleColor = SkinManager.ColorScheme.AccentColor.Lighten(0.5f);
+ }
+ else
+ {
+ // Emphasis
+ rippleColor = GetColorByType();
+ }
+ }
+ else
+ {
+ if (UseAccentColor)
+ {
+ // Normal with accent
+ rippleColor = SkinManager.ColorScheme.AccentColor;
+ }
+ else
+ {
+ if (SkinManager.Theme == MaterialSkinManager.Themes.LIGHT)
+ {
+ rippleColor = GetColorByType();
+ }
+ else
+ {
+ rippleColor = GetColorByType().Lighten(0.5f);
+ }
+ }
+ }
+
+ using (Brush rippleBrush = new SolidBrush(Color.FromArgb((int)(100 - (animationValue * 100)), // Alpha animation
+ rippleColor))) // Normal
{
- var rippleSize = (int)(animationValue * Width * 2);
+ int rippleSize = (int)(animationValue * Width * 2);
g.FillEllipse(rippleBrush, new Rectangle(animationSource.X - rippleSize / 2, animationSource.Y - rippleSize / 2, rippleSize, rippleSize));
}
}
@@ -525,21 +668,60 @@ protected override void OnPaint(PaintEventArgs pevent)
}
//Text
- var textRect = ClientRectangle;
+ Rectangle textRect = ClientRectangle;
if (Icon != null)
{
textRect.Width -= 8 + ICON_SIZE + 4 + 8; // left padding + icon width + space between Icon and Text + right padding
textRect.X += 8 + ICON_SIZE + 4; // left padding + icon width + space between Icon and Text
}
-
+ /*
Color textColor = Enabled ? (HighEmphasis ? (Type == MaterialButtonType.Text || Type == MaterialButtonType.Outlined) ?
UseAccentColor ? SkinManager.ColorScheme.AccentColor : // Outline or Text and accent and emphasis
- NoAccentTextColor == Color.Empty ?
+ NoAccentTextColor == Color.Empty ?
SkinManager.ColorScheme.PrimaryColor : // Outline or Text and emphasis
NoAccentTextColor : // User defined Outline or Text and emphasis
SkinManager.ColorScheme.TextColor : // Contained and Emphasis
SkinManager.TextHighEmphasisColor) : // Cointained and accent
SkinManager.TextDisabledOrHintColor; // Disabled
+ */
+ Color textColor = SkinManager.TextDisabledOrHintColor;
+ if (Enabled)
+ {
+ if (HighEmphasis)
+ {
+ if ((Type == MaterialButtonType.Text || Type == MaterialButtonType.Outlined))
+ {
+ if (UseAccentColor)
+ {
+ textColor = SkinManager.ColorScheme.AccentColor;
+ // Outline or Text and accent and emphasis
+ }
+ else
+ {
+ if (NoAccentTextColor == Color.Empty)
+ {
+ //Outline or Text and emphasis no accent
+ textColor = GetColorByType();
+ }
+ else
+ {
+ //User defined Outline or Text and emphasis
+ textColor = NoAccentTextColor;
+ }
+ }
+ }
+ else
+ {
+ //Contained and Emphasis
+ textColor = SkinManager.ColorScheme.TextColor;
+ }
+ }
+ else
+ {
+ //Cointained and accent
+ textColor = SkinManager.TextHighEmphasisColor;
+ }
+ }
using (NativeTextRenderer NativeText = new NativeTextRenderer(g))
{
@@ -554,7 +736,7 @@ protected override void OnPaint(PaintEventArgs pevent)
}
//Icon
- var iconRect = new Rectangle(8, (Height / 2) - (ICON_SIZE / 2), ICON_SIZE, ICON_SIZE);
+ Rectangle iconRect = new Rectangle(8, (Height / 2) - (ICON_SIZE / 2), ICON_SIZE, ICON_SIZE);
if (string.IsNullOrEmpty(Text))
{
@@ -568,6 +750,29 @@ protected override void OnPaint(PaintEventArgs pevent)
}
}
+ private Color GetColorByType()
+ {
+ switch (ColorType)
+ {
+ case MaterialButtonColorType.Primary:
+ return SkinManager.ColorScheme.PrimaryColor;
+ case MaterialButtonColorType.Secondary:
+ return SkinManager.ColorScheme.DarkPrimaryColor;
+ case MaterialButtonColorType.Tertiary:
+ return SkinManager.ColorScheme.LightPrimaryColor;
+ case MaterialButtonColorType.Success:
+ return SkinManager.ColorScheme.SuccessColor;
+ case MaterialButtonColorType.Info:
+ return SkinManager.ColorScheme.InfoColor;
+ case MaterialButtonColorType.Warning:
+ return SkinManager.ColorScheme.WarningColor;
+ case MaterialButtonColorType.Danger:
+ return SkinManager.ColorScheme.DangerColor;
+ default:
+ return SkinManager.ColorScheme.LightPrimaryColor;
+ }
+ }
+
///
/// The GetPreferredSize
///
@@ -587,7 +792,7 @@ public override Size GetPreferredSize(Size proposedSize)
Size s = base.GetPreferredSize(proposedSize);
// Provides extra space for proper padding for content
- var extra = 16;
+ int extra = 16;
if (Icon != null)
{
@@ -607,7 +812,7 @@ public override Size GetPreferredSize(Size proposedSize)
s.Width += extra;
s.Height = HEIGHTDEFAULT;
}
- if (Icon != null && Text.Length==0 && s.Width < MINIMUMWIDTHICONONLY) s.Width = MINIMUMWIDTHICONONLY;
+ if (Icon != null && Text.Length == 0 && s.Width < MINIMUMWIDTHICONONLY) s.Width = MINIMUMWIDTHICONONLY;
else if (s.Width < MINIMUMWIDTH) s.Width = MINIMUMWIDTH;
return s;
diff --git a/MaterialSkin/Controls/MaterialForm.cs b/MaterialSkin/Controls/MaterialForm.cs
index e777a3cc..96d1aadb 100644
--- a/MaterialSkin/Controls/MaterialForm.cs
+++ b/MaterialSkin/Controls/MaterialForm.cs
@@ -9,9 +9,9 @@ namespace MaterialSkin.Controls
using System.Runtime.InteropServices;
using System.Windows.Forms;
- #if NETFRAMEWORK
+#if NETFRAMEWORK
using System.Runtime.Remoting.Channels;
- #endif
+#endif
public class MaterialForm : Form, IMaterialControl
{
@@ -41,6 +41,27 @@ public FormStyles FormStyle
}
}
+ [Category("Material Skin"), Browsable(true), DisplayName("Close button icon"), Description("Sets the replacement of the close button in the form")]
+ public Image XButtonIcon
+ {
+ get => xButtonIcon;
+ set => xButtonIcon = value;
+ }
+
+ [Category("Material Skin"), Browsable(true), DisplayName("Minimize button icon"), Description("Sets the replacement of the minimaze button in the form")]
+ public Image MinButtonIcon
+ {
+ get => minButtonIcon;
+ set => minButtonIcon = value;
+ }
+
+ [Category("Material Skin"), Browsable(true), DisplayName("Maximize button icon"), Description("Sets the replacement of the maximize button in the form")]
+ public Image MaxButtonIcon
+ {
+ get => maxButtonIcon;
+ set => maxButtonIcon = value;
+ }
+
[Category("Drawer")]
public bool DrawerShowIconsWhenHidden
{
@@ -184,6 +205,7 @@ public enum FormStyles
{
StatusAndActionBar_None,
ActionBar_None,
+ ActionBar_30,
ActionBar_40,
ActionBar_48,
ActionBar_56,
@@ -410,6 +432,9 @@ private bool Maximized
private int STATUS_BAR_HEIGHT = 24;
private int ACTION_BAR_HEIGHT = 40;
+ private Image xButtonIcon;
+ private Image minButtonIcon;
+ private Image maxButtonIcon;
#endregion
public MaterialForm()
@@ -429,7 +454,7 @@ public MaterialForm()
SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw, true);
FormStyle = FormStyles.ActionBar_40;
- Padding = new Padding(PADDING_MINIMUM, STATUS_BAR_HEIGHT+ ACTION_BAR_HEIGHT, PADDING_MINIMUM, PADDING_MINIMUM); //Keep space for resize by mouse
+ Padding = new Padding(PADDING_MINIMUM, STATUS_BAR_HEIGHT + ACTION_BAR_HEIGHT, PADDING_MINIMUM, PADDING_MINIMUM); //Keep space for resize by mouse
_clickAnimManager = new AnimationManager()
{
@@ -745,6 +770,10 @@ private void RecalculateFormBoundaries()
ACTION_BAR_HEIGHT = 0;
STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
break;
+ case FormStyles.ActionBar_30:
+ ACTION_BAR_HEIGHT = 30;
+ STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
+ break;
case FormStyles.ActionBar_40:
ACTION_BAR_HEIGHT = ACTION_BAR_HEIGHT_DEFAULT;
STATUS_BAR_HEIGHT = STATUS_BAR_HEIGHT_DEFAULT;
@@ -837,7 +866,7 @@ protected override void WndProc(ref Message m)
}
// Double click to maximize
else if (message == WM.LeftButtonDoubleClick && isOverCaption)
- {
+ {
Maximized = !Maximized;
}
// Treat the Caption as if it was Non-Client
@@ -861,7 +890,7 @@ protected override void WndProc(ref Message m)
// Pass the command as a WM_SYSCOMMAND message
SendMessage(Handle, (int)WM.SystemCommand, id, 0);
-
+
// restore user defined ContextMenuStrip
base.ContextMenuStrip = user_cms;
}
@@ -1039,83 +1068,116 @@ protected override void OnPaint(PaintEventArgs e)
int x = showMax ? _minButtonBounds.X : _maxButtonBounds.X;
int y = showMax ? _minButtonBounds.Y : _maxButtonBounds.Y;
- g.DrawLine(
- formButtonsPen,
- x + (int)(_minButtonBounds.Width * 0.33),
- y + (int)(_minButtonBounds.Height * 0.66),
- x + (int)(_minButtonBounds.Width * 0.66),
- y + (int)(_minButtonBounds.Height * 0.66)
- );
+ if (MinButtonIcon == null)
+ {
+ g.DrawLine(
+ formButtonsPen,
+ x + (int)(_minButtonBounds.Width * 0.33),
+ y + (int)(_minButtonBounds.Height * 0.66),
+ x + (int)(_minButtonBounds.Width * 0.66),
+ y + (int)(_minButtonBounds.Height * 0.66)
+ );
+ }
+ else
+ {
+ g.DrawImage(MinButtonIcon,
+ x + ((_minButtonBounds.Width - (_minButtonBounds.Width * 0.8f)) / 2),
+ y + ((_minButtonBounds.Height - (_minButtonBounds.Height * 0.8f)) / 2),
+ _minButtonBounds.Width * 0.8f,
+ _minButtonBounds.Height * 0.8f);
+ }
}
// Maximize button
if (showMax)
{
- if (WindowState != FormWindowState.Maximized)
+ if (MaxButtonIcon != null)
{
- g.DrawRectangle(
- formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.33),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.36),
- (int)(_maxButtonBounds.Width * 0.39),
- (int)(_maxButtonBounds.Height * 0.31)
- );
+ g.DrawImage(MaxButtonIcon,
+ _maxButtonBounds.X + ((_maxButtonBounds.Width - (_maxButtonBounds.Width * 0.8f)) / 2),
+ _maxButtonBounds.Y + ((_maxButtonBounds.Height - (_maxButtonBounds.Height * 0.8f)) / 2),
+ _maxButtonBounds.Width * 0.8f,
+ _maxButtonBounds.Height * 0.8f);
}
else
{
- // Change position of square
- g.DrawRectangle(
- formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.30),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.42),
- (int)(_maxButtonBounds.Width * 0.40),
- (int)(_maxButtonBounds.Height * 0.32)
- );
- // Draw lines for background square
- g.DrawLine(formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.38)
- );
- g.DrawLine(formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.40),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.86),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.30)
- );
- g.DrawLine(formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.28),
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.64)
- );
- g.DrawLine(formButtonsPen,
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.70),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.62),
- _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.84),
- _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.62)
- );
+ if (WindowState != FormWindowState.Maximized)
+ {
+ g.DrawRectangle(
+ formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.33),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.36),
+ (int)(_maxButtonBounds.Width * 0.39),
+ (int)(_maxButtonBounds.Height * 0.31)
+ );
+ }
+ else
+ {
+ // Change position of square
+ g.DrawRectangle(
+ formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.30),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.42),
+ (int)(_maxButtonBounds.Width * 0.40),
+ (int)(_maxButtonBounds.Height * 0.32)
+ );
+ // Draw lines for background square
+ g.DrawLine(formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.42),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.38)
+ );
+ g.DrawLine(formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.40),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.30),
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.86),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.30)
+ );
+ g.DrawLine(formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.28),
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.82),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.64)
+ );
+ g.DrawLine(formButtonsPen,
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.70),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Height * 0.62),
+ _maxButtonBounds.X + (int)(_maxButtonBounds.Width * 0.84),
+ _maxButtonBounds.Y + (int)(_maxButtonBounds.Width * 0.62)
+ );
+ }
}
}
// Close button
if (ControlBox)
{
- g.DrawLine(
- formButtonsPen,
- _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
- _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
- _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
- _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66)
- );
-
- g.DrawLine(
- formButtonsPen,
- _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
- _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
- _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
- _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66));
+ if (XButtonIcon == null)
+ {
+ g.DrawLine(
+ formButtonsPen,
+ _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
+ _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
+ _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
+ _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66)
+ );
+
+ g.DrawLine(
+ formButtonsPen,
+ _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.66),
+ _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.33),
+ _xButtonBounds.X + (int)(_xButtonBounds.Width * 0.33),
+ _xButtonBounds.Y + (int)(_xButtonBounds.Height * 0.66));
+ }
+ else
+ {
+ g.DrawImage(XButtonIcon,
+ _xButtonBounds.X + ((_xButtonBounds.Width - (_xButtonBounds.Width * 0.8f)) / 2),
+ _xButtonBounds.Y + ((_xButtonBounds.Height - (_xButtonBounds.Height * 0.8f)) / 2),
+ _xButtonBounds.Width * 0.8f,
+ _xButtonBounds.Height * 0.8f);
+ }
}
}
}
@@ -1124,10 +1186,20 @@ protected override void OnPaint(PaintEventArgs e)
if (DrawerTabControl != null && _formStyle != FormStyles.ActionBar_None && _formStyle != FormStyles.StatusAndActionBar_None)
{
if (_buttonState == ButtonState.DrawerOver)
- g.FillRectangle(hoverBrush, _drawerButtonBounds);
+ {
+ if (ACTION_BAR_HEIGHT < ACTION_BAR_HEIGHT_DEFAULT)
+ g.FillRectangle(hoverBrush, new Rectangle(ClientRectangle.X + (SkinManager.FORM_PADDING / 2) + 7, STATUS_BAR_HEIGHT, ACTION_BAR_HEIGHT, ACTION_BAR_HEIGHT));
+ else
+ g.FillRectangle(hoverBrush, _drawerButtonBounds);
+ }
if (_buttonState == ButtonState.DrawerDown)
- g.FillRectangle(downBrush, _drawerButtonBounds);
+ {
+ if (ACTION_BAR_HEIGHT < ACTION_BAR_HEIGHT_DEFAULT)
+ g.FillRectangle(hoverBrush, new Rectangle(ClientRectangle.X + (SkinManager.FORM_PADDING / 2) + 7, STATUS_BAR_HEIGHT, ACTION_BAR_HEIGHT, ACTION_BAR_HEIGHT));
+ else
+ g.FillRectangle(hoverBrush, _drawerButtonBounds);
+ }
_drawerIconRect = new Rectangle(SkinManager.FORM_PADDING / 2, STATUS_BAR_HEIGHT, ACTION_BAR_HEIGHT_DEFAULT, ACTION_BAR_HEIGHT);
// Ripple
@@ -1177,7 +1249,7 @@ protected override void OnPaint(PaintEventArgs e)
//Form title
using (NativeTextRenderer NativeText = new NativeTextRenderer(g))
{
- Rectangle textLocation = new Rectangle(DrawerTabControl != null ? TITLE_LEFT_PADDING : TITLE_LEFT_PADDING - (ICON_SIZE + (ACTION_BAR_PADDING*2)), STATUS_BAR_HEIGHT, ClientSize.Width, ACTION_BAR_HEIGHT);
+ Rectangle textLocation = new Rectangle(DrawerTabControl != null ? TITLE_LEFT_PADDING : TITLE_LEFT_PADDING - (ICON_SIZE + (ACTION_BAR_PADDING * 2)), STATUS_BAR_HEIGHT, ClientSize.Width, ACTION_BAR_HEIGHT);
NativeText.DrawTransparentText(Text, SkinManager.getLogFontByType(MaterialSkinManager.fontType.H6),
SkinManager.ColorScheme.TextColor,
textLocation.Location,
@@ -1239,6 +1311,17 @@ private static IntPtr SetWindowLongPtr(IntPtr hWnd, int nIndex, IntPtr dwNewLong
[DllImport("user32.dll")]
private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
#endregion
+
+ private void InitializeComponent()
+ {
+ this.SuspendLayout();
+ //
+ // MaterialForm
+ //
+ this.ClientSize = new System.Drawing.Size(282, 253);
+ this.Name = "MaterialForm";
+ this.ResumeLayout(false);
+ }
}
public class MaterialDrawerForm : Form
diff --git a/MaterialSkin/DrawHelper.cs b/MaterialSkin/DrawHelper.cs
index efc1eb1c..7967aee2 100644
--- a/MaterialSkin/DrawHelper.cs
+++ b/MaterialSkin/DrawHelper.cs
@@ -19,7 +19,7 @@ internal static class DrawHelper
/// The
public static GraphicsPath CreateRoundRect(float x, float y, float width, float height, float radius)
{
- var gp = new GraphicsPath();
+ GraphicsPath gp = new GraphicsPath();
gp.AddArc(x + width - (radius * 2), y, radius * 2, radius * 2, 270, 90);
gp.AddArc(x + width - (radius * 2), y + height - (radius * 2), radius * 2, radius * 2, 0, 90);
gp.AddArc(x, y + height - (radius * 2), radius * 2, radius * 2, 90, 90);
@@ -59,11 +59,11 @@ public static GraphicsPath CreateRoundRect(RectangleF rect, float radius)
/// The
public static Color BlendColor(Color backgroundColor, Color frontColor, double blend)
{
- var ratio = blend / 255d;
- var invRatio = 1d - ratio;
- var r = (int)((backgroundColor.R * invRatio) + (frontColor.R * ratio));
- var g = (int)((backgroundColor.G * invRatio) + (frontColor.G * ratio));
- var b = (int)((backgroundColor.B * invRatio) + (frontColor.B * ratio));
+ double ratio = blend / 255d;
+ double invRatio = 1d - ratio;
+ int r = (int)((backgroundColor.R * invRatio) + (frontColor.R * ratio));
+ int g = (int)((backgroundColor.G * invRatio) + (frontColor.G * ratio));
+ int b = (int)((backgroundColor.B * invRatio) + (frontColor.B * ratio));
return Color.FromArgb(r, g, b);
}
@@ -78,10 +78,11 @@ public static Color BlendColor(Color backgroundColor, Color frontColor)
return BlendColor(backgroundColor, frontColor, frontColor.A);
}
- public static void DrawSquareShadow(Graphics g, Rectangle bounds)
+ public static void DrawSquareShadow(Graphics g, Rectangle bounds, int radius = 4)
{
using (SolidBrush shadowBrush = new SolidBrush(Color.FromArgb(12, 0, 0, 0)))
{
+ /*
GraphicsPath path;
path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 3.5f, bounds.Y - 1.5f, bounds.Width + 6, bounds.Height + 6), 8);
g.FillPath(shadowBrush, path);
@@ -94,6 +95,20 @@ public static void DrawSquareShadow(Graphics g, Rectangle bounds)
path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 0.5f, bounds.Y + 2.5f, bounds.Width + 0, bounds.Height + 0), 4);
g.FillPath(shadowBrush, path);
path.Dispose();
+ */
+
+ GraphicsPath path;
+ path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 3.5f, bounds.Y - 1.5f, bounds.Width + 6, bounds.Height + 6), radius * 1.5f);
+ g.FillPath(shadowBrush, path);
+ path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 2.5f, bounds.Y - 1.5f, bounds.Width + 4, bounds.Height + 4), radius * 1.25f);
+ g.FillPath(shadowBrush, path);
+ path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 1.5f, bounds.Y - 0.5f, bounds.Width + 2, bounds.Height + 2), radius);
+ g.FillPath(shadowBrush, path);
+ path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 0.5f, bounds.Y + 1.5f, bounds.Width + 0, bounds.Height + 0), radius);
+ g.FillPath(shadowBrush, path);
+ path = DrawHelper.CreateRoundRect(new RectangleF(bounds.X - 0.5f, bounds.Y + 2.5f, bounds.Width + 0, bounds.Height + 0), radius);
+ g.FillPath(shadowBrush, path);
+ path.Dispose();
}
}
diff --git a/MaterialSkin/MaterialSkinManager.cs b/MaterialSkin/MaterialSkinManager.cs
index 22ea8509..1e1651b6 100644
--- a/MaterialSkin/MaterialSkinManager.cs
+++ b/MaterialSkin/MaterialSkinManager.cs
@@ -35,7 +35,7 @@ public class MaterialSkinManager
private MaterialSkinManager()
{
Theme = Themes.LIGHT;
- ColorScheme = new ColorScheme(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE);
+ ColorScheme = new ColorScheme(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE, Primary.Green700,Primary.Cyan700, Primary.Yellow700, Primary.Red700);
// Create and cache Roboto fonts
// Thanks https://www.codeproject.com/Articles/42041/How-to-Use-a-Font-Without-Installing-it
diff --git a/MaterialSkinExample/MainForm.Designer.cs b/MaterialSkinExample/MainForm.Designer.cs
index 7da9791c..08e618f4 100644
--- a/MaterialSkinExample/MainForm.Designer.cs
+++ b/MaterialSkinExample/MainForm.Designer.cs
@@ -1,4 +1,4 @@
-using System.Drawing;
+using System.Drawing;
using System.Windows.Forms;
using MaterialSkin;
using MaterialSkin.Controls;
@@ -75,6 +75,20 @@ private void InitializeComponent()
this.materialSwitch4 = new MaterialSkin.Controls.MaterialSwitch();
this.MaterialButton4 = new MaterialSkin.Controls.MaterialButton();
this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.materialButton43 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton42 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton46 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton41 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton40 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton39 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton38 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton31 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton30 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton44 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton29 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton28 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton27 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton26 = new MaterialSkin.Controls.MaterialButton();
this.materialButton23 = new MaterialSkin.Controls.MaterialButton();
this.materialLabel37 = new MaterialSkin.Controls.MaterialLabel();
this.materialLabel36 = new MaterialSkin.Controls.MaterialLabel();
@@ -90,6 +104,13 @@ private void InitializeComponent()
this.materialButton21 = new MaterialSkin.Controls.MaterialButton();
this.materialButton5 = new MaterialSkin.Controls.MaterialButton();
this.materialButton8 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton37 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton36 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton45 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton35 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton34 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton33 = new MaterialSkin.Controls.MaterialButton();
+ this.materialButton32 = new MaterialSkin.Controls.MaterialButton();
this.materialButton9 = new MaterialSkin.Controls.MaterialButton();
this.materialButton18 = new MaterialSkin.Controls.MaterialButton();
this.materialButton17 = new MaterialSkin.Controls.MaterialButton();
@@ -102,14 +123,8 @@ private void InitializeComponent()
this.materialButton10 = new MaterialSkin.Controls.MaterialButton();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.msReadOnly = new MaterialSkin.Controls.MaterialSwitch();
- this.materialComboBox6 = new MaterialSkin.Controls.MaterialComboBox();
- this.materialComboBox2 = new MaterialSkin.Controls.MaterialComboBox();
- this.materialComboBox5 = new MaterialSkin.Controls.MaterialComboBox();
- this.materialComboBox4 = new MaterialSkin.Controls.MaterialComboBox();
- this.materialComboBox3 = new MaterialSkin.Controls.MaterialComboBox();
this.materialLabel5 = new MaterialSkin.Controls.MaterialLabel();
this.materialCheckedListBox1 = new MaterialSkin.Controls.MaterialCheckedListBox();
- this.materialComboBox1 = new MaterialSkin.Controls.MaterialComboBox();
this.materialLabel34 = new MaterialSkin.Controls.MaterialLabel();
this.materialLabel33 = new MaterialSkin.Controls.MaterialLabel();
this.materialLabel32 = new MaterialSkin.Controls.MaterialLabel();
@@ -131,7 +146,6 @@ private void InitializeComponent()
this.materialSwitch14 = new MaterialSkin.Controls.MaterialSwitch();
this.materialSwitch16 = new MaterialSkin.Controls.MaterialSwitch();
this.materialSwitch13 = new MaterialSkin.Controls.MaterialSwitch();
- this.materialComboBox7 = new MaterialSkin.Controls.MaterialComboBox();
this.materialSwitch12 = new MaterialSkin.Controls.MaterialSwitch();
this.materialSwitch11 = new MaterialSkin.Controls.MaterialSwitch();
this.materialSwitch10 = new MaterialSkin.Controls.MaterialSwitch();
@@ -248,7 +262,7 @@ private void InitializeComponent()
this.materialCheckbox3.Cursor = System.Windows.Forms.Cursors.Default;
this.materialCheckbox3.Depth = 0;
this.materialCheckbox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
- this.materialCheckbox3.Location = new System.Drawing.Point(31, 167);
+ this.materialCheckbox3.Location = new System.Drawing.Point(41, 206);
this.materialCheckbox3.Margin = new System.Windows.Forms.Padding(0);
this.materialCheckbox3.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialCheckbox3.MouseState = MaterialSkin.MouseState.HOVER;
@@ -268,7 +282,7 @@ private void InitializeComponent()
this.materialCheckbox1.Cursor = System.Windows.Forms.Cursors.Default;
this.materialCheckbox1.Depth = 0;
this.materialCheckbox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
- this.materialCheckbox1.Location = new System.Drawing.Point(31, 125);
+ this.materialCheckbox1.Location = new System.Drawing.Point(41, 154);
this.materialCheckbox1.Margin = new System.Windows.Forms.Padding(0);
this.materialCheckbox1.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialCheckbox1.MouseState = MaterialSkin.MouseState.HOVER;
@@ -295,12 +309,13 @@ private void InitializeComponent()
this.materialTabControl1.Depth = 0;
this.materialTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.materialTabControl1.ImageList = this.menuIconList;
- this.materialTabControl1.Location = new System.Drawing.Point(3, 64);
+ this.materialTabControl1.Location = new System.Drawing.Point(4, 79);
+ this.materialTabControl1.Margin = new System.Windows.Forms.Padding(4);
this.materialTabControl1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialTabControl1.Multiline = true;
this.materialTabControl1.Name = "materialTabControl1";
this.materialTabControl1.SelectedIndex = 0;
- this.materialTabControl1.Size = new System.Drawing.Size(1023, 555);
+ this.materialTabControl1.Size = new System.Drawing.Size(1373, 683);
this.materialTabControl1.TabIndex = 18;
//
// tabPage1
@@ -325,8 +340,9 @@ private void InitializeComponent()
this.tabPage1.Controls.Add(this.MaterialButton4);
this.tabPage1.ImageKey = "round_assessment_white_24dp.png";
this.tabPage1.Location = new System.Drawing.Point(4, 31);
+ this.tabPage1.Margin = new System.Windows.Forms.Padding(4);
this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage1.Size = new System.Drawing.Size(1365, 648);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Home";
//
@@ -337,12 +353,12 @@ private void InitializeComponent()
this.materialButton25.Depth = 0;
this.materialButton25.HighEmphasis = true;
this.materialButton25.Icon = null;
- this.materialButton25.Location = new System.Drawing.Point(450, 459);
- this.materialButton25.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton25.Location = new System.Drawing.Point(600, 565);
+ this.materialButton25.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton25.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton25.Name = "materialButton25";
this.materialButton25.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton25.Size = new System.Drawing.Size(118, 36);
+ this.materialButton25.Size = new System.Drawing.Size(119, 36);
this.materialButton25.TabIndex = 41;
this.materialButton25.Text = "Show Dialog";
this.materialButton25.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -357,12 +373,12 @@ private void InitializeComponent()
this.materialButton6.Depth = 0;
this.materialButton6.HighEmphasis = true;
this.materialButton6.Icon = null;
- this.materialButton6.Location = new System.Drawing.Point(249, 459);
- this.materialButton6.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton6.Location = new System.Drawing.Point(332, 565);
+ this.materialButton6.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton6.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton6.Name = "materialButton6";
this.materialButton6.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton6.Size = new System.Drawing.Size(142, 36);
+ this.materialButton6.Size = new System.Drawing.Size(144, 36);
this.materialButton6.TabIndex = 41;
this.materialButton6.Text = "Show SnackBar";
this.materialButton6.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -376,8 +392,7 @@ private void InitializeComponent()
this.materialLabel57.Depth = 0;
this.materialLabel57.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel57.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel57.Location = new System.Drawing.Point(447, 423);
- this.materialLabel57.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel57.Location = new System.Drawing.Point(596, 521);
this.materialLabel57.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel57.Name = "materialLabel57";
this.materialLabel57.Size = new System.Drawing.Size(47, 19);
@@ -390,8 +405,7 @@ private void InitializeComponent()
this.materialLabel53.Depth = 0;
this.materialLabel53.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel53.Location = new System.Drawing.Point(246, 423);
- this.materialLabel53.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel53.Location = new System.Drawing.Point(328, 521);
this.materialLabel53.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel53.Name = "materialLabel53";
this.materialLabel53.Size = new System.Drawing.Size(69, 19);
@@ -404,7 +418,8 @@ private void InitializeComponent()
this.materialLabel52.Depth = 0;
this.materialLabel52.Font = new System.Drawing.Font("Roboto", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel52.FontType = MaterialSkin.MaterialSkinManager.fontType.H5;
- this.materialLabel52.Location = new System.Drawing.Point(642, 69);
+ this.materialLabel52.Location = new System.Drawing.Point(856, 85);
+ this.materialLabel52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel52.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel52.Name = "materialLabel52";
this.materialLabel52.Size = new System.Drawing.Size(113, 29);
@@ -417,12 +432,13 @@ private void InitializeComponent()
this.materialListBoxFormStyle.BorderColor = System.Drawing.Color.LightGray;
this.materialListBoxFormStyle.Depth = 0;
this.materialListBoxFormStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialListBoxFormStyle.Location = new System.Drawing.Point(635, 102);
+ this.materialListBoxFormStyle.Location = new System.Drawing.Point(847, 126);
+ this.materialListBoxFormStyle.Margin = new System.Windows.Forms.Padding(4);
this.materialListBoxFormStyle.MouseState = MaterialSkin.MouseState.HOVER;
this.materialListBoxFormStyle.Name = "materialListBoxFormStyle";
this.materialListBoxFormStyle.SelectedIndex = -1;
this.materialListBoxFormStyle.SelectedItem = null;
- this.materialListBoxFormStyle.Size = new System.Drawing.Size(225, 258);
+ this.materialListBoxFormStyle.Size = new System.Drawing.Size(300, 318);
this.materialListBoxFormStyle.TabIndex = 38;
//
// MaterialButton3
@@ -432,12 +448,12 @@ private void InitializeComponent()
this.MaterialButton3.Depth = 0;
this.MaterialButton3.HighEmphasis = true;
this.MaterialButton3.Icon = null;
- this.MaterialButton3.Location = new System.Drawing.Point(22, 460);
- this.MaterialButton3.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.MaterialButton3.Location = new System.Drawing.Point(29, 566);
+ this.MaterialButton3.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.MaterialButton3.MouseState = MaterialSkin.MouseState.HOVER;
this.MaterialButton3.Name = "MaterialButton3";
this.MaterialButton3.NoAccentTextColor = System.Drawing.Color.Empty;
- this.MaterialButton3.Size = new System.Drawing.Size(160, 36);
+ this.MaterialButton3.Size = new System.Drawing.Size(163, 36);
this.MaterialButton3.TabIndex = 36;
this.MaterialButton3.Text = "Open Message box";
this.MaterialButton3.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -452,7 +468,7 @@ private void InitializeComponent()
this.materialSwitch8.CheckState = System.Windows.Forms.CheckState.Checked;
this.materialSwitch8.Depth = 0;
this.materialSwitch8.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch8.Location = new System.Drawing.Point(22, 323);
+ this.materialSwitch8.Location = new System.Drawing.Point(29, 398);
this.materialSwitch8.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch8.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch8.MouseState = MaterialSkin.MouseState.HOVER;
@@ -470,7 +486,8 @@ private void InitializeComponent()
this.materialLabel24.Depth = 0;
this.materialLabel24.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel24.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel24.Location = new System.Drawing.Point(21, 17);
+ this.materialLabel24.Location = new System.Drawing.Point(28, 21);
+ this.materialLabel24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel24.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel24.Name = "materialLabel24";
this.materialLabel24.Size = new System.Drawing.Size(129, 58);
@@ -482,7 +499,7 @@ private void InitializeComponent()
this.materialSwitch6.AutoSize = true;
this.materialSwitch6.Depth = 0;
this.materialSwitch6.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch6.Location = new System.Drawing.Point(22, 286);
+ this.materialSwitch6.Location = new System.Drawing.Point(29, 352);
this.materialSwitch6.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch6.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch6.MouseState = MaterialSkin.MouseState.HOVER;
@@ -500,8 +517,7 @@ private void InitializeComponent()
this.materialLabel6.Depth = 0;
this.materialLabel6.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel6.Location = new System.Drawing.Point(19, 424);
- this.materialLabel6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel6.Location = new System.Drawing.Point(25, 522);
this.materialLabel6.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel6.Name = "materialLabel6";
this.materialLabel6.Size = new System.Drawing.Size(154, 19);
@@ -513,10 +529,11 @@ private void InitializeComponent()
this.materialLabel9.Depth = 0;
this.materialLabel9.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel9.Location = new System.Drawing.Point(19, 79);
+ this.materialLabel9.Location = new System.Drawing.Point(25, 97);
+ this.materialLabel9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel9.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel9.Name = "materialLabel9";
- this.materialLabel9.Size = new System.Drawing.Size(455, 60);
+ this.materialLabel9.Size = new System.Drawing.Size(607, 74);
this.materialLabel9.TabIndex = 0;
this.materialLabel9.Text = "Welcome to the Material Skin Demo\r\nTo the left is the drawer, use it to see all t" +
"he demos available\r\nTry clicking stuff, you won\'t break it ;)\r\n";
@@ -528,7 +545,7 @@ private void InitializeComponent()
this.materialSwitch5.CheckState = System.Windows.Forms.CheckState.Checked;
this.materialSwitch5.Depth = 0;
this.materialSwitch5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch5.Location = new System.Drawing.Point(22, 250);
+ this.materialSwitch5.Location = new System.Drawing.Point(29, 308);
this.materialSwitch5.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch5.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch5.MouseState = MaterialSkin.MouseState.HOVER;
@@ -547,12 +564,12 @@ private void InitializeComponent()
this.materialButton7.Depth = 0;
this.materialButton7.HighEmphasis = true;
this.materialButton7.Icon = null;
- this.materialButton7.Location = new System.Drawing.Point(180, 156);
- this.materialButton7.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton7.Location = new System.Drawing.Point(240, 192);
+ this.materialButton7.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton7.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton7.Name = "materialButton7";
this.materialButton7.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton7.Size = new System.Drawing.Size(132, 36);
+ this.materialButton7.Size = new System.Drawing.Size(133, 36);
this.materialButton7.TabIndex = 0;
this.materialButton7.Text = "Change Theme";
this.materialButton7.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -565,7 +582,7 @@ private void InitializeComponent()
this.materialSwitch9.AutoSize = true;
this.materialSwitch9.Depth = 0;
this.materialSwitch9.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch9.Location = new System.Drawing.Point(22, 360);
+ this.materialSwitch9.Location = new System.Drawing.Point(29, 443);
this.materialSwitch9.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch9.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch9.MouseState = MaterialSkin.MouseState.HOVER;
@@ -582,7 +599,7 @@ private void InitializeComponent()
this.materialSwitch4.AutoSize = true;
this.materialSwitch4.Depth = 0;
this.materialSwitch4.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch4.Location = new System.Drawing.Point(22, 213);
+ this.materialSwitch4.Location = new System.Drawing.Point(29, 262);
this.materialSwitch4.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch4.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch4.MouseState = MaterialSkin.MouseState.HOVER;
@@ -601,12 +618,12 @@ private void InitializeComponent()
this.MaterialButton4.Depth = 0;
this.MaterialButton4.HighEmphasis = true;
this.MaterialButton4.Icon = null;
- this.MaterialButton4.Location = new System.Drawing.Point(22, 156);
- this.MaterialButton4.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.MaterialButton4.Location = new System.Drawing.Point(29, 192);
+ this.MaterialButton4.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.MaterialButton4.MouseState = MaterialSkin.MouseState.HOVER;
this.MaterialButton4.Name = "MaterialButton4";
this.MaterialButton4.NoAccentTextColor = System.Drawing.Color.Empty;
- this.MaterialButton4.Size = new System.Drawing.Size(138, 36);
+ this.MaterialButton4.Size = new System.Drawing.Size(140, 36);
this.MaterialButton4.TabIndex = 22;
this.MaterialButton4.Text = "Change Colors";
this.MaterialButton4.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -617,6 +634,20 @@ private void InitializeComponent()
// tabPage7
//
this.tabPage7.BackColor = System.Drawing.Color.White;
+ this.tabPage7.Controls.Add(this.materialButton43);
+ this.tabPage7.Controls.Add(this.materialButton42);
+ this.tabPage7.Controls.Add(this.materialButton46);
+ this.tabPage7.Controls.Add(this.materialButton41);
+ this.tabPage7.Controls.Add(this.materialButton40);
+ this.tabPage7.Controls.Add(this.materialButton39);
+ this.tabPage7.Controls.Add(this.materialButton38);
+ this.tabPage7.Controls.Add(this.materialButton31);
+ this.tabPage7.Controls.Add(this.materialButton30);
+ this.tabPage7.Controls.Add(this.materialButton44);
+ this.tabPage7.Controls.Add(this.materialButton29);
+ this.tabPage7.Controls.Add(this.materialButton28);
+ this.tabPage7.Controls.Add(this.materialButton27);
+ this.tabPage7.Controls.Add(this.materialButton26);
this.tabPage7.Controls.Add(this.materialButton23);
this.tabPage7.Controls.Add(this.materialLabel37);
this.tabPage7.Controls.Add(this.materialLabel36);
@@ -632,6 +663,13 @@ private void InitializeComponent()
this.tabPage7.Controls.Add(this.materialButton21);
this.tabPage7.Controls.Add(this.materialButton5);
this.tabPage7.Controls.Add(this.materialButton8);
+ this.tabPage7.Controls.Add(this.materialButton37);
+ this.tabPage7.Controls.Add(this.materialButton36);
+ this.tabPage7.Controls.Add(this.materialButton45);
+ this.tabPage7.Controls.Add(this.materialButton35);
+ this.tabPage7.Controls.Add(this.materialButton34);
+ this.tabPage7.Controls.Add(this.materialButton33);
+ this.tabPage7.Controls.Add(this.materialButton32);
this.tabPage7.Controls.Add(this.materialButton9);
this.tabPage7.Controls.Add(this.materialButton18);
this.tabPage7.Controls.Add(this.materialButton17);
@@ -644,12 +682,315 @@ private void InitializeComponent()
this.tabPage7.Controls.Add(this.materialButton10);
this.tabPage7.ImageKey = "round_gps_fixed_white_24dp.png";
this.tabPage7.Location = new System.Drawing.Point(4, 31);
+ this.tabPage7.Margin = new System.Windows.Forms.Padding(4);
this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage7.Size = new System.Drawing.Size(1365, 648);
this.tabPage7.TabIndex = 6;
this.tabPage7.Text = "Buttons Galore";
//
+ // materialButton43
+ //
+ this.materialButton43.AutoSize = false;
+ this.materialButton43.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton43.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Danger;
+ this.materialButton43.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton43.Depth = 0;
+ this.materialButton43.HighEmphasis = true;
+ this.materialButton43.Icon = null;
+ this.materialButton43.Location = new System.Drawing.Point(903, 566);
+ this.materialButton43.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton43.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton43.Name = "materialButton43";
+ this.materialButton43.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton43.Radius = 18;
+ this.materialButton43.Size = new System.Drawing.Size(150, 44);
+ this.materialButton43.TabIndex = 67;
+ this.materialButton43.Text = "DANGER";
+ this.materialButton43.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton43.UseAccentColor = false;
+ this.materialButton43.UseVisualStyleBackColor = true;
+ //
+ // materialButton42
+ //
+ this.materialButton42.AutoSize = false;
+ this.materialButton42.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton42.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Warning;
+ this.materialButton42.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton42.Depth = 0;
+ this.materialButton42.HighEmphasis = true;
+ this.materialButton42.Icon = null;
+ this.materialButton42.Location = new System.Drawing.Point(903, 508);
+ this.materialButton42.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton42.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton42.Name = "materialButton42";
+ this.materialButton42.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton42.Radius = 16;
+ this.materialButton42.Size = new System.Drawing.Size(150, 44);
+ this.materialButton42.TabIndex = 67;
+ this.materialButton42.Text = "WARNING";
+ this.materialButton42.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton42.UseAccentColor = false;
+ this.materialButton42.UseVisualStyleBackColor = true;
+ //
+ // materialButton46
+ //
+ this.materialButton46.AutoSize = false;
+ this.materialButton46.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton46.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Success;
+ this.materialButton46.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton46.Depth = 0;
+ this.materialButton46.HighEmphasis = true;
+ this.materialButton46.Icon = null;
+ this.materialButton46.Location = new System.Drawing.Point(903, 391);
+ this.materialButton46.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton46.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton46.Name = "materialButton46";
+ this.materialButton46.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton46.Radius = 12;
+ this.materialButton46.Size = new System.Drawing.Size(150, 44);
+ this.materialButton46.TabIndex = 67;
+ this.materialButton46.Text = "SUCCESS";
+ this.materialButton46.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton46.UseAccentColor = false;
+ this.materialButton46.UseVisualStyleBackColor = true;
+ //
+ // materialButton41
+ //
+ this.materialButton41.AutoSize = false;
+ this.materialButton41.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton41.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Info;
+ this.materialButton41.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton41.Depth = 0;
+ this.materialButton41.HighEmphasis = true;
+ this.materialButton41.Icon = null;
+ this.materialButton41.Location = new System.Drawing.Point(903, 449);
+ this.materialButton41.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton41.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton41.Name = "materialButton41";
+ this.materialButton41.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton41.Radius = 12;
+ this.materialButton41.Size = new System.Drawing.Size(150, 44);
+ this.materialButton41.TabIndex = 67;
+ this.materialButton41.Text = "INFO";
+ this.materialButton41.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton41.UseAccentColor = false;
+ this.materialButton41.UseVisualStyleBackColor = true;
+ //
+ // materialButton40
+ //
+ this.materialButton40.AutoSize = false;
+ this.materialButton40.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton40.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Tertiary;
+ this.materialButton40.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton40.Depth = 0;
+ this.materialButton40.HighEmphasis = true;
+ this.materialButton40.Icon = null;
+ this.materialButton40.Location = new System.Drawing.Point(903, 331);
+ this.materialButton40.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton40.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton40.Name = "materialButton40";
+ this.materialButton40.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton40.Radius = 8;
+ this.materialButton40.Size = new System.Drawing.Size(150, 44);
+ this.materialButton40.TabIndex = 67;
+ this.materialButton40.Text = "TERTIARY";
+ this.materialButton40.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton40.UseAccentColor = false;
+ this.materialButton40.UseVisualStyleBackColor = true;
+ //
+ // materialButton39
+ //
+ this.materialButton39.AutoSize = false;
+ this.materialButton39.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton39.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Secondary;
+ this.materialButton39.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton39.Depth = 0;
+ this.materialButton39.HighEmphasis = true;
+ this.materialButton39.Icon = null;
+ this.materialButton39.Location = new System.Drawing.Point(903, 271);
+ this.materialButton39.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton39.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton39.Name = "materialButton39";
+ this.materialButton39.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton39.Size = new System.Drawing.Size(150, 44);
+ this.materialButton39.TabIndex = 67;
+ this.materialButton39.Text = "SECONDARY";
+ this.materialButton39.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton39.UseAccentColor = false;
+ this.materialButton39.UseVisualStyleBackColor = true;
+ //
+ // materialButton38
+ //
+ this.materialButton38.AutoSize = false;
+ this.materialButton38.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton38.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton38.Depth = 0;
+ this.materialButton38.HighEmphasis = true;
+ this.materialButton38.Icon = null;
+ this.materialButton38.Location = new System.Drawing.Point(903, 212);
+ this.materialButton38.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton38.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton38.Name = "materialButton38";
+ this.materialButton38.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton38.Size = new System.Drawing.Size(150, 44);
+ this.materialButton38.TabIndex = 67;
+ this.materialButton38.Text = "PRIMARY";
+ this.materialButton38.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
+ this.materialButton38.UseAccentColor = false;
+ this.materialButton38.UseVisualStyleBackColor = true;
+ //
+ // materialButton31
+ //
+ this.materialButton31.AutoSize = false;
+ this.materialButton31.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton31.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Danger;
+ this.materialButton31.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton31.Depth = 0;
+ this.materialButton31.HighEmphasis = true;
+ this.materialButton31.Icon = null;
+ this.materialButton31.Location = new System.Drawing.Point(203, 567);
+ this.materialButton31.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton31.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton31.Name = "materialButton31";
+ this.materialButton31.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton31.Radius = 18;
+ this.materialButton31.Size = new System.Drawing.Size(150, 44);
+ this.materialButton31.TabIndex = 66;
+ this.materialButton31.Text = "DANGER";
+ this.materialButton31.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton31.UseAccentColor = false;
+ this.materialButton31.UseVisualStyleBackColor = true;
+ //
+ // materialButton30
+ //
+ this.materialButton30.AutoSize = false;
+ this.materialButton30.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton30.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Warning;
+ this.materialButton30.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton30.Depth = 0;
+ this.materialButton30.HighEmphasis = true;
+ this.materialButton30.Icon = null;
+ this.materialButton30.Location = new System.Drawing.Point(203, 508);
+ this.materialButton30.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton30.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton30.Name = "materialButton30";
+ this.materialButton30.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton30.Radius = 16;
+ this.materialButton30.Size = new System.Drawing.Size(150, 44);
+ this.materialButton30.TabIndex = 66;
+ this.materialButton30.Text = "WARNING";
+ this.materialButton30.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton30.UseAccentColor = false;
+ this.materialButton30.UseVisualStyleBackColor = true;
+ //
+ // materialButton44
+ //
+ this.materialButton44.AutoSize = false;
+ this.materialButton44.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton44.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Success;
+ this.materialButton44.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton44.Depth = 0;
+ this.materialButton44.HighEmphasis = true;
+ this.materialButton44.Icon = null;
+ this.materialButton44.Location = new System.Drawing.Point(203, 389);
+ this.materialButton44.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton44.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton44.Name = "materialButton44";
+ this.materialButton44.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton44.Radius = 12;
+ this.materialButton44.Size = new System.Drawing.Size(150, 44);
+ this.materialButton44.TabIndex = 66;
+ this.materialButton44.Text = "SUCCESS";
+ this.materialButton44.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton44.UseAccentColor = false;
+ this.materialButton44.UseVisualStyleBackColor = true;
+ //
+ // materialButton29
+ //
+ this.materialButton29.AutoSize = false;
+ this.materialButton29.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton29.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Info;
+ this.materialButton29.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton29.Depth = 0;
+ this.materialButton29.HighEmphasis = true;
+ this.materialButton29.Icon = null;
+ this.materialButton29.Location = new System.Drawing.Point(203, 449);
+ this.materialButton29.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton29.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton29.Name = "materialButton29";
+ this.materialButton29.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton29.Radius = 12;
+ this.materialButton29.Size = new System.Drawing.Size(150, 44);
+ this.materialButton29.TabIndex = 66;
+ this.materialButton29.Text = "INFO";
+ this.materialButton29.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton29.UseAccentColor = false;
+ this.materialButton29.UseVisualStyleBackColor = true;
+ //
+ // materialButton28
+ //
+ this.materialButton28.AutoSize = false;
+ this.materialButton28.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton28.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Tertiary;
+ this.materialButton28.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton28.Depth = 0;
+ this.materialButton28.HighEmphasis = true;
+ this.materialButton28.Icon = null;
+ this.materialButton28.Location = new System.Drawing.Point(203, 331);
+ this.materialButton28.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton28.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton28.Name = "materialButton28";
+ this.materialButton28.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton28.Radius = 8;
+ this.materialButton28.Size = new System.Drawing.Size(150, 44);
+ this.materialButton28.TabIndex = 66;
+ this.materialButton28.Text = "TERTIARY";
+ this.materialButton28.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton28.UseAccentColor = false;
+ this.materialButton28.UseVisualStyleBackColor = true;
+ //
+ // materialButton27
+ //
+ this.materialButton27.AutoSize = false;
+ this.materialButton27.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton27.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Secondary;
+ this.materialButton27.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton27.Depth = 0;
+ this.materialButton27.HighEmphasis = true;
+ this.materialButton27.Icon = null;
+ this.materialButton27.Location = new System.Drawing.Point(203, 271);
+ this.materialButton27.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton27.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton27.Name = "materialButton27";
+ this.materialButton27.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton27.Size = new System.Drawing.Size(150, 44);
+ this.materialButton27.TabIndex = 65;
+ this.materialButton27.Text = "SECONDARY";
+ this.materialButton27.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton27.UseAccentColor = false;
+ this.materialButton27.UseVisualStyleBackColor = true;
+ //
+ // materialButton26
+ //
+ this.materialButton26.AutoSize = false;
+ this.materialButton26.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton26.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton26.Depth = 0;
+ this.materialButton26.HighEmphasis = true;
+ this.materialButton26.Icon = null;
+ this.materialButton26.Location = new System.Drawing.Point(203, 212);
+ this.materialButton26.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton26.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton26.Name = "materialButton26";
+ this.materialButton26.NoAccentTextColor = System.Drawing.Color.Empty;
+ this.materialButton26.Size = new System.Drawing.Size(150, 44);
+ this.materialButton26.TabIndex = 64;
+ this.materialButton26.Text = "PRIMARY";
+ this.materialButton26.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
+ this.materialButton26.UseAccentColor = false;
+ this.materialButton26.UseVisualStyleBackColor = true;
+ //
// materialButton23
//
this.materialButton23.AutoSize = false;
@@ -658,12 +999,12 @@ private void InitializeComponent()
this.materialButton23.Depth = 0;
this.materialButton23.HighEmphasis = false;
this.materialButton23.Icon = global::MaterialSkinExample.Properties.Resources.baseline_fingerprint_black_24dp;
- this.materialButton23.Location = new System.Drawing.Point(280, 221);
- this.materialButton23.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton23.Location = new System.Drawing.Point(386, 272);
+ this.materialButton23.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton23.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton23.Name = "materialButton23";
this.materialButton23.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton23.Size = new System.Drawing.Size(168, 36);
+ this.materialButton23.Size = new System.Drawing.Size(150, 44);
this.materialButton23.TabIndex = 7;
this.materialButton23.Text = "CONT - ICON";
this.materialButton23.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -676,8 +1017,7 @@ private void InitializeComponent()
this.materialLabel37.Depth = 0;
this.materialLabel37.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel37.Location = new System.Drawing.Point(519, 183);
- this.materialLabel37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel37.Location = new System.Drawing.Point(728, 225);
this.materialLabel37.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel37.Name = "materialLabel37";
this.materialLabel37.Size = new System.Drawing.Size(51, 19);
@@ -690,8 +1030,7 @@ private void InitializeComponent()
this.materialLabel36.Depth = 0;
this.materialLabel36.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel36.Location = new System.Drawing.Point(277, 183);
- this.materialLabel36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel36.Location = new System.Drawing.Point(382, 225);
this.materialLabel36.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel36.Name = "materialLabel36";
this.materialLabel36.Size = new System.Drawing.Size(73, 19);
@@ -704,8 +1043,7 @@ private void InitializeComponent()
this.materialLabel35.Depth = 0;
this.materialLabel35.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel35.Location = new System.Drawing.Point(42, 183);
- this.materialLabel35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel35.Location = new System.Drawing.Point(56, 225);
this.materialLabel35.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel35.Name = "materialLabel35";
this.materialLabel35.Size = new System.Drawing.Size(66, 19);
@@ -717,11 +1055,11 @@ private void InitializeComponent()
this.materialFloatingActionButton1.AnimateShowHideButton = true;
this.materialFloatingActionButton1.Depth = 0;
this.materialFloatingActionButton1.Icon = global::MaterialSkinExample.Properties.Resources.plus;
- this.materialFloatingActionButton1.Location = new System.Drawing.Point(761, 221);
- this.materialFloatingActionButton1.Margin = new System.Windows.Forms.Padding(2);
+ this.materialFloatingActionButton1.Location = new System.Drawing.Point(1097, 272);
+ this.materialFloatingActionButton1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.materialFloatingActionButton1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialFloatingActionButton1.Name = "materialFloatingActionButton1";
- this.materialFloatingActionButton1.Size = new System.Drawing.Size(56, 56);
+ this.materialFloatingActionButton1.Size = new System.Drawing.Size(75, 69);
this.materialFloatingActionButton1.TabIndex = 19;
this.materialFloatingActionButton1.Text = "materialFloatingActionButton1";
this.materialFloatingActionButton1.UseVisualStyleBackColor = true;
@@ -732,8 +1070,7 @@ private void InitializeComponent()
this.materialLabel3.Depth = 0;
this.materialLabel3.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel3.Location = new System.Drawing.Point(758, 183);
- this.materialLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel3.Location = new System.Drawing.Point(1093, 225);
this.materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel3.Name = "materialLabel3";
this.materialLabel3.Size = new System.Drawing.Size(159, 19);
@@ -746,7 +1083,8 @@ private void InitializeComponent()
this.materialLabel25.Depth = 0;
this.materialLabel25.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel25.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel25.Location = new System.Drawing.Point(22, 13);
+ this.materialLabel25.Location = new System.Drawing.Point(29, 16);
+ this.materialLabel25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel25.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel25.Name = "materialLabel25";
this.materialLabel25.Size = new System.Drawing.Size(179, 58);
@@ -761,12 +1099,12 @@ private void InitializeComponent()
this.materialButton24.Depth = 0;
this.materialButton24.HighEmphasis = false;
this.materialButton24.Icon = global::MaterialSkinExample.Properties.Resources.baseline_bluetooth_black_24dp;
- this.materialButton24.Location = new System.Drawing.Point(522, 221);
- this.materialButton24.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton24.Location = new System.Drawing.Point(732, 272);
+ this.materialButton24.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton24.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton24.Name = "materialButton24";
this.materialButton24.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton24.Size = new System.Drawing.Size(189, 36);
+ this.materialButton24.Size = new System.Drawing.Size(150, 44);
this.materialButton24.TabIndex = 13;
this.materialButton24.Text = "OUTLINE - ICON";
this.materialButton24.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -781,12 +1119,12 @@ private void InitializeComponent()
this.materialButton22.Depth = 0;
this.materialButton22.HighEmphasis = false;
this.materialButton22.Icon = global::MaterialSkinExample.Properties.Resources.baseline_favorite_border_black_24dp;
- this.materialButton22.Location = new System.Drawing.Point(32, 221);
- this.materialButton22.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton22.Location = new System.Drawing.Point(43, 272);
+ this.materialButton22.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton22.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton22.Name = "materialButton22";
this.materialButton22.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton22.Size = new System.Drawing.Size(174, 36);
+ this.materialButton22.Size = new System.Drawing.Size(150, 44);
this.materialButton22.TabIndex = 1;
this.materialButton22.Text = "TEXT - ICON";
this.materialButton22.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
@@ -798,10 +1136,11 @@ private void InitializeComponent()
this.materialLabel8.Depth = 0;
this.materialLabel8.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel8.Location = new System.Drawing.Point(25, 76);
+ this.materialLabel8.Location = new System.Drawing.Point(33, 94);
+ this.materialLabel8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel8.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel8.Name = "materialLabel8";
- this.materialLabel8.Size = new System.Drawing.Size(891, 95);
+ this.materialLabel8.Size = new System.Drawing.Size(1188, 117);
this.materialLabel8.TabIndex = 57;
this.materialLabel8.Text = resources.GetString("materialLabel8.Text");
//
@@ -813,12 +1152,12 @@ private void InitializeComponent()
this.materialButton19.Depth = 0;
this.materialButton19.HighEmphasis = false;
this.materialButton19.Icon = null;
- this.materialButton19.Location = new System.Drawing.Point(522, 365);
- this.materialButton19.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton19.Location = new System.Drawing.Point(732, 449);
+ this.materialButton19.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton19.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton19.Name = "materialButton19";
this.materialButton19.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton19.Size = new System.Drawing.Size(189, 36);
+ this.materialButton19.Size = new System.Drawing.Size(150, 44);
this.materialButton19.TabIndex = 16;
this.materialButton19.Text = "OUTLINE - LOW - NORMAL";
this.materialButton19.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -833,12 +1172,12 @@ private void InitializeComponent()
this.materialButton20.Depth = 0;
this.materialButton20.HighEmphasis = false;
this.materialButton20.Icon = null;
- this.materialButton20.Location = new System.Drawing.Point(32, 365);
- this.materialButton20.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton20.Location = new System.Drawing.Point(43, 449);
+ this.materialButton20.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton20.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton20.Name = "materialButton20";
this.materialButton20.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton20.Size = new System.Drawing.Size(174, 36);
+ this.materialButton20.Size = new System.Drawing.Size(150, 44);
this.materialButton20.TabIndex = 4;
this.materialButton20.Text = "TEXT - LOW - NORMAL";
this.materialButton20.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
@@ -853,12 +1192,12 @@ private void InitializeComponent()
this.materialButton21.Depth = 0;
this.materialButton21.HighEmphasis = false;
this.materialButton21.Icon = null;
- this.materialButton21.Location = new System.Drawing.Point(280, 365);
- this.materialButton21.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton21.Location = new System.Drawing.Point(386, 449);
+ this.materialButton21.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton21.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton21.Name = "materialButton21";
this.materialButton21.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton21.Size = new System.Drawing.Size(168, 36);
+ this.materialButton21.Size = new System.Drawing.Size(150, 44);
this.materialButton21.TabIndex = 10;
this.materialButton21.Text = "CONT - LOW - NORMAL";
this.materialButton21.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -873,12 +1212,12 @@ private void InitializeComponent()
this.materialButton5.Depth = 0;
this.materialButton5.HighEmphasis = true;
this.materialButton5.Icon = null;
- this.materialButton5.Location = new System.Drawing.Point(522, 269);
- this.materialButton5.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton5.Location = new System.Drawing.Point(732, 331);
+ this.materialButton5.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton5.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton5.Name = "materialButton5";
this.materialButton5.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton5.Size = new System.Drawing.Size(189, 36);
+ this.materialButton5.Size = new System.Drawing.Size(150, 44);
this.materialButton5.TabIndex = 14;
this.materialButton5.Text = "OUTLINE - HIGH - NORMAL";
this.materialButton5.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -893,18 +1232,169 @@ private void InitializeComponent()
this.materialButton8.Depth = 0;
this.materialButton8.HighEmphasis = true;
this.materialButton8.Icon = null;
- this.materialButton8.Location = new System.Drawing.Point(32, 269);
- this.materialButton8.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton8.Location = new System.Drawing.Point(43, 331);
+ this.materialButton8.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton8.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton8.Name = "materialButton8";
this.materialButton8.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton8.Size = new System.Drawing.Size(174, 36);
+ this.materialButton8.Size = new System.Drawing.Size(150, 44);
this.materialButton8.TabIndex = 2;
this.materialButton8.Text = "TEXT - HIGH - NORMAL";
this.materialButton8.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
this.materialButton8.UseAccentColor = false;
this.materialButton8.UseVisualStyleBackColor = true;
//
+ // materialButton37
+ //
+ this.materialButton37.AutoSize = false;
+ this.materialButton37.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton37.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Danger;
+ this.materialButton37.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton37.Depth = 0;
+ this.materialButton37.HighEmphasis = true;
+ this.materialButton37.Icon = null;
+ this.materialButton37.Location = new System.Drawing.Point(546, 567);
+ this.materialButton37.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton37.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton37.Name = "materialButton37";
+ this.materialButton37.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton37.Radius = 18;
+ this.materialButton37.Size = new System.Drawing.Size(150, 44);
+ this.materialButton37.TabIndex = 8;
+ this.materialButton37.Text = "DANGER";
+ this.materialButton37.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton37.UseAccentColor = false;
+ this.materialButton37.UseVisualStyleBackColor = true;
+ //
+ // materialButton36
+ //
+ this.materialButton36.AutoSize = false;
+ this.materialButton36.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton36.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Warning;
+ this.materialButton36.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton36.Depth = 0;
+ this.materialButton36.HighEmphasis = true;
+ this.materialButton36.Icon = null;
+ this.materialButton36.Location = new System.Drawing.Point(546, 508);
+ this.materialButton36.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton36.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton36.Name = "materialButton36";
+ this.materialButton36.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton36.Radius = 16;
+ this.materialButton36.Size = new System.Drawing.Size(150, 44);
+ this.materialButton36.TabIndex = 8;
+ this.materialButton36.Text = "WARNING";
+ this.materialButton36.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton36.UseAccentColor = false;
+ this.materialButton36.UseVisualStyleBackColor = true;
+ //
+ // materialButton45
+ //
+ this.materialButton45.AutoSize = false;
+ this.materialButton45.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton45.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Success;
+ this.materialButton45.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton45.Depth = 0;
+ this.materialButton45.HighEmphasis = true;
+ this.materialButton45.Icon = null;
+ this.materialButton45.Location = new System.Drawing.Point(546, 389);
+ this.materialButton45.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton45.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton45.Name = "materialButton45";
+ this.materialButton45.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton45.Radius = 12;
+ this.materialButton45.Size = new System.Drawing.Size(150, 44);
+ this.materialButton45.TabIndex = 8;
+ this.materialButton45.Text = "SUCCESS";
+ this.materialButton45.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton45.UseAccentColor = false;
+ this.materialButton45.UseVisualStyleBackColor = true;
+ //
+ // materialButton35
+ //
+ this.materialButton35.AutoSize = false;
+ this.materialButton35.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton35.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Info;
+ this.materialButton35.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton35.Depth = 0;
+ this.materialButton35.HighEmphasis = true;
+ this.materialButton35.Icon = null;
+ this.materialButton35.Location = new System.Drawing.Point(546, 450);
+ this.materialButton35.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton35.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton35.Name = "materialButton35";
+ this.materialButton35.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton35.Radius = 12;
+ this.materialButton35.Size = new System.Drawing.Size(150, 44);
+ this.materialButton35.TabIndex = 8;
+ this.materialButton35.Text = "INFO";
+ this.materialButton35.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton35.UseAccentColor = false;
+ this.materialButton35.UseVisualStyleBackColor = true;
+ //
+ // materialButton34
+ //
+ this.materialButton34.AutoSize = false;
+ this.materialButton34.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton34.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Tertiary;
+ this.materialButton34.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton34.Depth = 0;
+ this.materialButton34.HighEmphasis = true;
+ this.materialButton34.Icon = null;
+ this.materialButton34.Location = new System.Drawing.Point(546, 331);
+ this.materialButton34.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton34.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton34.Name = "materialButton34";
+ this.materialButton34.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton34.Radius = 8;
+ this.materialButton34.Size = new System.Drawing.Size(150, 44);
+ this.materialButton34.TabIndex = 8;
+ this.materialButton34.Text = "TERTIARY";
+ this.materialButton34.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton34.UseAccentColor = false;
+ this.materialButton34.UseVisualStyleBackColor = true;
+ //
+ // materialButton33
+ //
+ this.materialButton33.AutoSize = false;
+ this.materialButton33.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton33.ColorType = MaterialSkin.Controls.MaterialButton.MaterialButtonColorType.Secondary;
+ this.materialButton33.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton33.Depth = 0;
+ this.materialButton33.HighEmphasis = true;
+ this.materialButton33.Icon = null;
+ this.materialButton33.Location = new System.Drawing.Point(546, 270);
+ this.materialButton33.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton33.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton33.Name = "materialButton33";
+ this.materialButton33.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton33.Size = new System.Drawing.Size(150, 44);
+ this.materialButton33.TabIndex = 8;
+ this.materialButton33.Text = "SECONDARY";
+ this.materialButton33.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton33.UseAccentColor = false;
+ this.materialButton33.UseVisualStyleBackColor = true;
+ //
+ // materialButton32
+ //
+ this.materialButton32.AutoSize = false;
+ this.materialButton32.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.materialButton32.Density = MaterialSkin.Controls.MaterialButton.MaterialButtonDensity.Default;
+ this.materialButton32.Depth = 0;
+ this.materialButton32.HighEmphasis = true;
+ this.materialButton32.Icon = null;
+ this.materialButton32.Location = new System.Drawing.Point(546, 212);
+ this.materialButton32.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+ this.materialButton32.MouseState = MaterialSkin.MouseState.HOVER;
+ this.materialButton32.Name = "materialButton32";
+ this.materialButton32.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton32.Size = new System.Drawing.Size(150, 44);
+ this.materialButton32.TabIndex = 8;
+ this.materialButton32.Text = "PRIMARY";
+ this.materialButton32.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
+ this.materialButton32.UseAccentColor = false;
+ this.materialButton32.UseVisualStyleBackColor = true;
+ //
// materialButton9
//
this.materialButton9.AutoSize = false;
@@ -913,12 +1403,12 @@ private void InitializeComponent()
this.materialButton9.Depth = 0;
this.materialButton9.HighEmphasis = true;
this.materialButton9.Icon = null;
- this.materialButton9.Location = new System.Drawing.Point(280, 269);
- this.materialButton9.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton9.Location = new System.Drawing.Point(386, 331);
+ this.materialButton9.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton9.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton9.Name = "materialButton9";
- this.materialButton9.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton9.Size = new System.Drawing.Size(168, 36);
+ this.materialButton9.NoAccentTextColor = System.Drawing.Color.DarkViolet;
+ this.materialButton9.Size = new System.Drawing.Size(150, 44);
this.materialButton9.TabIndex = 8;
this.materialButton9.Text = "CONT - HIGH - NORMAL";
this.materialButton9.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -934,12 +1424,12 @@ private void InitializeComponent()
this.materialButton18.Enabled = false;
this.materialButton18.HighEmphasis = false;
this.materialButton18.Icon = null;
- this.materialButton18.Location = new System.Drawing.Point(522, 461);
- this.materialButton18.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton18.Location = new System.Drawing.Point(732, 567);
+ this.materialButton18.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton18.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton18.Name = "materialButton18";
this.materialButton18.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton18.Size = new System.Drawing.Size(189, 36);
+ this.materialButton18.Size = new System.Drawing.Size(150, 44);
this.materialButton18.TabIndex = 18;
this.materialButton18.Text = "OUTLINE - DISABLED";
this.materialButton18.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -954,12 +1444,12 @@ private void InitializeComponent()
this.materialButton17.Depth = 0;
this.materialButton17.HighEmphasis = false;
this.materialButton17.Icon = null;
- this.materialButton17.Location = new System.Drawing.Point(522, 413);
- this.materialButton17.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton17.Location = new System.Drawing.Point(732, 508);
+ this.materialButton17.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton17.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton17.Name = "materialButton17";
this.materialButton17.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton17.Size = new System.Drawing.Size(189, 36);
+ this.materialButton17.Size = new System.Drawing.Size(150, 44);
this.materialButton17.TabIndex = 17;
this.materialButton17.Text = "OUTLINE - LOW - ACCENT";
this.materialButton17.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -974,12 +1464,12 @@ private void InitializeComponent()
this.materialButton16.Depth = 0;
this.materialButton16.HighEmphasis = true;
this.materialButton16.Icon = null;
- this.materialButton16.Location = new System.Drawing.Point(522, 317);
- this.materialButton16.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton16.Location = new System.Drawing.Point(732, 390);
+ this.materialButton16.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton16.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton16.Name = "materialButton16";
this.materialButton16.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton16.Size = new System.Drawing.Size(189, 36);
+ this.materialButton16.Size = new System.Drawing.Size(150, 44);
this.materialButton16.TabIndex = 15;
this.materialButton16.Text = "OUTLINE - HIGH - ACCENT";
this.materialButton16.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -994,12 +1484,12 @@ private void InitializeComponent()
this.materialButton15.Depth = 0;
this.materialButton15.HighEmphasis = false;
this.materialButton15.Icon = null;
- this.materialButton15.Location = new System.Drawing.Point(32, 413);
- this.materialButton15.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton15.Location = new System.Drawing.Point(43, 508);
+ this.materialButton15.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton15.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton15.Name = "materialButton15";
this.materialButton15.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton15.Size = new System.Drawing.Size(174, 36);
+ this.materialButton15.Size = new System.Drawing.Size(150, 44);
this.materialButton15.TabIndex = 5;
this.materialButton15.Text = "TEXT - LOW - ACCENT";
this.materialButton15.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
@@ -1014,12 +1504,12 @@ private void InitializeComponent()
this.materialButton14.Depth = 0;
this.materialButton14.HighEmphasis = true;
this.materialButton14.Icon = null;
- this.materialButton14.Location = new System.Drawing.Point(32, 317);
- this.materialButton14.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton14.Location = new System.Drawing.Point(43, 390);
+ this.materialButton14.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton14.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton14.Name = "materialButton14";
this.materialButton14.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton14.Size = new System.Drawing.Size(174, 36);
+ this.materialButton14.Size = new System.Drawing.Size(150, 44);
this.materialButton14.TabIndex = 3;
this.materialButton14.Text = "TEXT - HIGH - ACCENT";
this.materialButton14.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
@@ -1035,12 +1525,12 @@ private void InitializeComponent()
this.materialButton13.Enabled = false;
this.materialButton13.HighEmphasis = false;
this.materialButton13.Icon = null;
- this.materialButton13.Location = new System.Drawing.Point(280, 461);
- this.materialButton13.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton13.Location = new System.Drawing.Point(386, 567);
+ this.materialButton13.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton13.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton13.Name = "materialButton13";
this.materialButton13.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton13.Size = new System.Drawing.Size(168, 36);
+ this.materialButton13.Size = new System.Drawing.Size(150, 44);
this.materialButton13.TabIndex = 12;
this.materialButton13.Text = "CONT - DISABLED";
this.materialButton13.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -1056,12 +1546,12 @@ private void InitializeComponent()
this.materialButton12.Enabled = false;
this.materialButton12.HighEmphasis = false;
this.materialButton12.Icon = null;
- this.materialButton12.Location = new System.Drawing.Point(32, 461);
- this.materialButton12.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton12.Location = new System.Drawing.Point(43, 567);
+ this.materialButton12.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton12.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton12.Name = "materialButton12";
this.materialButton12.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton12.Size = new System.Drawing.Size(174, 36);
+ this.materialButton12.Size = new System.Drawing.Size(150, 44);
this.materialButton12.TabIndex = 6;
this.materialButton12.Text = "TEXT - DISABLED";
this.materialButton12.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Text;
@@ -1076,12 +1566,12 @@ private void InitializeComponent()
this.materialButton11.Depth = 0;
this.materialButton11.HighEmphasis = false;
this.materialButton11.Icon = null;
- this.materialButton11.Location = new System.Drawing.Point(280, 413);
- this.materialButton11.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton11.Location = new System.Drawing.Point(386, 508);
+ this.materialButton11.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton11.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton11.Name = "materialButton11";
this.materialButton11.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton11.Size = new System.Drawing.Size(168, 36);
+ this.materialButton11.Size = new System.Drawing.Size(150, 44);
this.materialButton11.TabIndex = 11;
this.materialButton11.Text = "CONT - LOW - ACCENT";
this.materialButton11.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -1096,12 +1586,12 @@ private void InitializeComponent()
this.materialButton10.Depth = 0;
this.materialButton10.HighEmphasis = true;
this.materialButton10.Icon = null;
- this.materialButton10.Location = new System.Drawing.Point(280, 317);
- this.materialButton10.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton10.Location = new System.Drawing.Point(386, 390);
+ this.materialButton10.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton10.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton10.Name = "materialButton10";
this.materialButton10.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialButton10.Size = new System.Drawing.Size(168, 36);
+ this.materialButton10.Size = new System.Drawing.Size(150, 44);
this.materialButton10.TabIndex = 9;
this.materialButton10.Text = "CONT - HIGH - ACCENT";
this.materialButton10.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Contained;
@@ -1112,14 +1602,8 @@ private void InitializeComponent()
//
this.tabPage2.BackColor = System.Drawing.Color.White;
this.tabPage2.Controls.Add(this.msReadOnly);
- this.tabPage2.Controls.Add(this.materialComboBox6);
- this.tabPage2.Controls.Add(this.materialComboBox2);
- this.tabPage2.Controls.Add(this.materialComboBox5);
- this.tabPage2.Controls.Add(this.materialComboBox4);
- this.tabPage2.Controls.Add(this.materialComboBox3);
this.tabPage2.Controls.Add(this.materialLabel5);
this.tabPage2.Controls.Add(this.materialCheckedListBox1);
- this.tabPage2.Controls.Add(this.materialComboBox1);
this.tabPage2.Controls.Add(this.materialLabel34);
this.tabPage2.Controls.Add(this.materialLabel33);
this.tabPage2.Controls.Add(this.materialLabel32);
@@ -1139,9 +1623,10 @@ private void InitializeComponent()
this.tabPage2.Controls.Add(this.materialCheckbox1);
this.tabPage2.ImageKey = "round_bluetooth_white_24dp.png";
this.tabPage2.Location = new System.Drawing.Point(4, 31);
+ this.tabPage2.Margin = new System.Windows.Forms.Padding(4);
this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage2.Size = new System.Drawing.Size(1365, 648);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Selection Controls";
//
@@ -1150,7 +1635,7 @@ private void InitializeComponent()
this.msReadOnly.AutoSize = true;
this.msReadOnly.Depth = 0;
this.msReadOnly.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.msReadOnly.Location = new System.Drawing.Point(237, 125);
+ this.msReadOnly.Location = new System.Drawing.Point(316, 154);
this.msReadOnly.Margin = new System.Windows.Forms.Padding(0);
this.msReadOnly.MouseLocation = new System.Drawing.Point(-1, -1);
this.msReadOnly.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1162,289 +1647,13 @@ private void InitializeComponent()
this.msReadOnly.UseVisualStyleBackColor = true;
this.msReadOnly.CheckedChanged += new System.EventHandler(this.MsReadOnly_CheckedChanged);
//
- // materialComboBox6
- //
- this.materialComboBox6.AutoResize = false;
- this.materialComboBox6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox6.Depth = 0;
- this.materialComboBox6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox6.DropDownHeight = 174;
- this.materialComboBox6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox6.DropDownWidth = 121;
- this.materialComboBox6.Enabled = false;
- this.materialComboBox6.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox6.FormattingEnabled = true;
- this.materialComboBox6.Hint = "This is Disabled";
- this.materialComboBox6.IntegralHeight = false;
- this.materialComboBox6.ItemHeight = 43;
- this.materialComboBox6.Items.AddRange(new object[] {
- "But with value",
- "hi"});
- this.materialComboBox6.Location = new System.Drawing.Point(463, 407);
- this.materialComboBox6.MaxDropDownItems = 4;
- this.materialComboBox6.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox6.Name = "materialComboBox6";
- this.materialComboBox6.Size = new System.Drawing.Size(190, 49);
- this.materialComboBox6.StartIndex = 0;
- this.materialComboBox6.TabIndex = 74;
- //
- // materialComboBox2
- //
- this.materialComboBox2.AutoResize = true;
- this.materialComboBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox2.Depth = 0;
- this.materialComboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox2.DropDownHeight = 174;
- this.materialComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox2.DropDownWidth = 435;
- this.materialComboBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox2.FormattingEnabled = true;
- this.materialComboBox2.Hint = "AutoResize = true";
- this.materialComboBox2.IntegralHeight = false;
- this.materialComboBox2.ItemHeight = 43;
- this.materialComboBox2.Items.AddRange(new object[] {
- "long item string that usually doesn\'t fit in the combobox",
- "Hello There, I hope you\'ll have a wonderfull day"});
- this.materialComboBox2.Location = new System.Drawing.Point(463, 462);
- this.materialComboBox2.MaxDropDownItems = 4;
- this.materialComboBox2.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox2.Name = "materialComboBox2";
- this.materialComboBox2.Size = new System.Drawing.Size(435, 49);
- this.materialComboBox2.StartIndex = 0;
- this.materialComboBox2.TabIndex = 73;
- //
- // materialComboBox5
- //
- this.materialComboBox5.AutoResize = false;
- this.materialComboBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox5.Depth = 0;
- this.materialComboBox5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox5.DropDownHeight = 174;
- this.materialComboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox5.DropDownWidth = 121;
- this.materialComboBox5.Enabled = false;
- this.materialComboBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox5.FormattingEnabled = true;
- this.materialComboBox5.Hint = "This is Disabled";
- this.materialComboBox5.IntegralHeight = false;
- this.materialComboBox5.ItemHeight = 43;
- this.materialComboBox5.Items.AddRange(new object[] {
- "When",
- "life",
- "gives",
- "you",
- "lemons,",
- "don\'t",
- "make",
- "lemonade!",
- "Make",
- "life",
- "take",
- "the",
- "lemons",
- "back!",
- "Get",
- "mad!",
- "I don\'t",
- "want",
- "your",
- "damn",
- "lemons;",
- "what",
- "am I",
- "supposed",
- "to do",
- "with",
- "these?",
- "Demand",
- "to see",
- "life\'s",
- "manager!",
- "Make",
- "life",
- "rue",
- "the",
- "day",
- "it thought",
- "it could",
- "give",
- "Cave",
- "Johnson",
- "lemons!",
- "Do you",
- "know",
- "who",
- "I am?",
- "I\'m",
- "the",
- "man",
- "who\'s",
- "gonna",
- "burn",
- "your",
- "house",
- "down...",
- "with the",
- "lemons!",
- "I\'m",
- "gonna",
- "get my",
- "engineers to",
- "invent a",
- "combustible",
- "lemon",
- "that",
- "burns",
- "your",
- "house",
- "down!"});
- this.materialComboBox5.Location = new System.Drawing.Point(463, 352);
- this.materialComboBox5.MaxDropDownItems = 4;
- this.materialComboBox5.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox5.Name = "materialComboBox5";
- this.materialComboBox5.Size = new System.Drawing.Size(190, 49);
- this.materialComboBox5.StartIndex = 0;
- this.materialComboBox5.TabIndex = 72;
- //
- // materialComboBox4
- //
- this.materialComboBox4.AutoResize = false;
- this.materialComboBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox4.Depth = 0;
- this.materialComboBox4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox4.DropDownHeight = 174;
- this.materialComboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox4.DropDownWidth = 121;
- this.materialComboBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox4.FormattingEnabled = true;
- this.materialComboBox4.Hint = "Primary color";
- this.materialComboBox4.IntegralHeight = false;
- this.materialComboBox4.ItemHeight = 43;
- this.materialComboBox4.Items.AddRange(new object[] {
- "Long",
- "List",
- "When",
- "life",
- "gives",
- "you",
- "lemons,",
- "don\'t",
- "make",
- "lemonade!",
- "Make",
- "life",
- "take",
- "the",
- "lemons",
- "back!",
- "Get",
- "mad!",
- "I don\'t",
- "want",
- "your",
- "damn",
- "lemons;",
- "what",
- "am I",
- "supposed",
- "to do",
- "with",
- "these?",
- "Demand",
- "to see",
- "life\'s",
- "manager!",
- "Make",
- "life",
- "rue",
- "the",
- "day",
- "it thought",
- "it could",
- "give",
- "Cave",
- "Johnson",
- "lemons!",
- "Do you",
- "know",
- "who",
- "I am?",
- "I\'m",
- "the",
- "man",
- "who\'s",
- "gonna",
- "burn",
- "your",
- "house",
- "down...",
- "with the",
- "lemons!",
- "I\'m",
- "gonna",
- "get my",
- "engineers to",
- "invent a",
- "combustible",
- "lemon",
- "that",
- "burns",
- "your",
- "house",
- "down!"});
- this.materialComboBox4.Location = new System.Drawing.Point(258, 407);
- this.materialComboBox4.MaxDropDownItems = 4;
- this.materialComboBox4.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox4.Name = "materialComboBox4";
- this.materialComboBox4.Size = new System.Drawing.Size(190, 49);
- this.materialComboBox4.StartIndex = 0;
- this.materialComboBox4.TabIndex = 71;
- this.materialComboBox4.UseAccent = false;
- //
- // materialComboBox3
- //
- this.materialComboBox3.AutoResize = false;
- this.materialComboBox3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox3.Depth = 0;
- this.materialComboBox3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox3.DropDownHeight = 118;
- this.materialComboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox3.DropDownWidth = 121;
- this.materialComboBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox3.FormattingEnabled = true;
- this.materialComboBox3.Hint = "small combo";
- this.materialComboBox3.IntegralHeight = false;
- this.materialComboBox3.ItemHeight = 29;
- this.materialComboBox3.Items.AddRange(new object[] {
- "Item 1",
- "Item 2",
- "Item 3",
- "Item 4",
- "Item 5",
- "Item 6",
- "Item 7"});
- this.materialComboBox3.Location = new System.Drawing.Point(258, 462);
- this.materialComboBox3.MaxDropDownItems = 4;
- this.materialComboBox3.MouseState = MaterialSkin.MouseState.HOVER;
- this.materialComboBox3.Name = "materialComboBox3";
- this.materialComboBox3.Size = new System.Drawing.Size(190, 35);
- this.materialComboBox3.StartIndex = 0;
- this.materialComboBox3.TabIndex = 70;
- this.materialComboBox3.UseTallSize = false;
- //
// materialLabel5
//
this.materialLabel5.AutoSize = true;
this.materialLabel5.Depth = 0;
this.materialLabel5.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel5.Location = new System.Drawing.Point(28, 315);
- this.materialLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel5.Location = new System.Drawing.Point(37, 388);
this.materialLabel5.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel5.Name = "materialLabel5";
this.materialLabel5.Size = new System.Drawing.Size(114, 19);
@@ -1457,53 +1666,22 @@ private void InitializeComponent()
this.materialCheckedListBox1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.materialCheckedListBox1.BackColor = System.Drawing.Color.White;
this.materialCheckedListBox1.Depth = 0;
- this.materialCheckedListBox1.Location = new System.Drawing.Point(31, 352);
- this.materialCheckedListBox1.Margin = new System.Windows.Forms.Padding(2);
+ this.materialCheckedListBox1.Location = new System.Drawing.Point(41, 433);
+ this.materialCheckedListBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.materialCheckedListBox1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialCheckedListBox1.Name = "materialCheckedListBox1";
- this.materialCheckedListBox1.Size = new System.Drawing.Size(190, 141);
+ this.materialCheckedListBox1.Size = new System.Drawing.Size(253, 174);
this.materialCheckedListBox1.Striped = false;
this.materialCheckedListBox1.StripeDarkColor = System.Drawing.Color.Empty;
this.materialCheckedListBox1.TabIndex = 16;
//
- // materialComboBox1
- //
- this.materialComboBox1.AutoResize = false;
- this.materialComboBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(237)))), ((int)(((byte)(237)))));
- this.materialComboBox1.Depth = 0;
- this.materialComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox1.DropDownHeight = 174;
- this.materialComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox1.DropDownWidth = 121;
- this.materialComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.materialComboBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F);
- this.materialComboBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox1.FormattingEnabled = true;
- this.materialComboBox1.Hint = "ComboBox hints!";
- this.materialComboBox1.IntegralHeight = false;
- this.materialComboBox1.ItemHeight = 43;
- this.materialComboBox1.Items.AddRange(new object[] {
- "Item 1",
- "Item 2",
- "Item 3",
- "Item 4",
- "Long item that won\'t fit here"});
- this.materialComboBox1.Location = new System.Drawing.Point(258, 352);
- this.materialComboBox1.MaxDropDownItems = 4;
- this.materialComboBox1.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox1.Name = "materialComboBox1";
- this.materialComboBox1.Size = new System.Drawing.Size(190, 49);
- this.materialComboBox1.StartIndex = 0;
- this.materialComboBox1.TabIndex = 17;
- //
// materialLabel34
//
this.materialLabel34.AutoSize = true;
this.materialLabel34.Depth = 0;
this.materialLabel34.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel34.Location = new System.Drawing.Point(255, 315);
- this.materialLabel34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel34.Location = new System.Drawing.Point(340, 388);
this.materialLabel34.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel34.Name = "materialLabel34";
this.materialLabel34.Size = new System.Drawing.Size(78, 19);
@@ -1516,8 +1694,7 @@ private void InitializeComponent()
this.materialLabel33.Depth = 0;
this.materialLabel33.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel33.Location = new System.Drawing.Point(675, 90);
- this.materialLabel33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel33.Location = new System.Drawing.Point(900, 111);
this.materialLabel33.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel33.Name = "materialLabel33";
this.materialLabel33.Size = new System.Drawing.Size(49, 19);
@@ -1530,8 +1707,7 @@ private void InitializeComponent()
this.materialLabel32.Depth = 0;
this.materialLabel32.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel32.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel32.Location = new System.Drawing.Point(428, 90);
- this.materialLabel32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel32.Location = new System.Drawing.Point(571, 111);
this.materialLabel32.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel32.Name = "materialLabel32";
this.materialLabel32.Size = new System.Drawing.Size(101, 19);
@@ -1544,8 +1720,7 @@ private void InitializeComponent()
this.materialLabel31.Depth = 0;
this.materialLabel31.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel31.Location = new System.Drawing.Point(28, 90);
- this.materialLabel31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.materialLabel31.Location = new System.Drawing.Point(37, 111);
this.materialLabel31.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel31.Name = "materialLabel31";
this.materialLabel31.Size = new System.Drawing.Size(70, 19);
@@ -1557,7 +1732,7 @@ private void InitializeComponent()
this.materialSwitch7.AutoSize = true;
this.materialSwitch7.Depth = 0;
this.materialSwitch7.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch7.Location = new System.Drawing.Point(678, 168);
+ this.materialSwitch7.Location = new System.Drawing.Point(904, 207);
this.materialSwitch7.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch7.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch7.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1574,7 +1749,7 @@ private void InitializeComponent()
this.materialRadioButton5.Cursor = System.Windows.Forms.Cursors.Default;
this.materialRadioButton5.Depth = 0;
this.materialRadioButton5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialRadioButton5.Location = new System.Drawing.Point(431, 251);
+ this.materialRadioButton5.Location = new System.Drawing.Point(575, 309);
this.materialRadioButton5.Margin = new System.Windows.Forms.Padding(0);
this.materialRadioButton5.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialRadioButton5.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1592,7 +1767,8 @@ private void InitializeComponent()
this.materialLabel26.Depth = 0;
this.materialLabel26.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel26.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel26.Location = new System.Drawing.Point(21, 12);
+ this.materialLabel26.Location = new System.Drawing.Point(28, 15);
+ this.materialLabel26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel26.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel26.Name = "materialLabel26";
this.materialLabel26.Size = new System.Drawing.Size(389, 58);
@@ -1607,7 +1783,7 @@ private void InitializeComponent()
this.materialRadioButton4.Depth = 0;
this.materialRadioButton4.Enabled = false;
this.materialRadioButton4.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialRadioButton4.Location = new System.Drawing.Point(431, 209);
+ this.materialRadioButton4.Location = new System.Drawing.Point(575, 257);
this.materialRadioButton4.Margin = new System.Windows.Forms.Padding(0);
this.materialRadioButton4.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialRadioButton4.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1625,7 +1801,7 @@ private void InitializeComponent()
this.materialRadioButton1.Cursor = System.Windows.Forms.Cursors.Default;
this.materialRadioButton1.Depth = 0;
this.materialRadioButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialRadioButton1.Location = new System.Drawing.Point(431, 125);
+ this.materialRadioButton1.Location = new System.Drawing.Point(575, 154);
this.materialRadioButton1.Margin = new System.Windows.Forms.Padding(0);
this.materialRadioButton1.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialRadioButton1.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1643,7 +1819,7 @@ private void InitializeComponent()
this.materialRadioButton2.Cursor = System.Windows.Forms.Cursors.Default;
this.materialRadioButton2.Depth = 0;
this.materialRadioButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialRadioButton2.Location = new System.Drawing.Point(431, 167);
+ this.materialRadioButton2.Location = new System.Drawing.Point(575, 206);
this.materialRadioButton2.Margin = new System.Windows.Forms.Padding(0);
this.materialRadioButton2.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialRadioButton2.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1663,7 +1839,7 @@ private void InitializeComponent()
this.materialSwitch3.Depth = 0;
this.materialSwitch3.Enabled = false;
this.materialSwitch3.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch3.Location = new System.Drawing.Point(678, 252);
+ this.materialSwitch3.Location = new System.Drawing.Point(904, 310);
this.materialSwitch3.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch3.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch3.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1680,7 +1856,7 @@ private void InitializeComponent()
this.materialSwitch2.Depth = 0;
this.materialSwitch2.Enabled = false;
this.materialSwitch2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch2.Location = new System.Drawing.Point(678, 210);
+ this.materialSwitch2.Location = new System.Drawing.Point(904, 258);
this.materialSwitch2.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch2.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch2.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1696,7 +1872,7 @@ private void InitializeComponent()
this.materialSwitch1.AutoSize = true;
this.materialSwitch1.Depth = 0;
this.materialSwitch1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSwitch1.Location = new System.Drawing.Point(678, 126);
+ this.materialSwitch1.Location = new System.Drawing.Point(904, 155);
this.materialSwitch1.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch1.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch1.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1714,7 +1890,7 @@ private void InitializeComponent()
this.materialCheckBox6.Depth = 0;
this.materialCheckBox6.Enabled = false;
this.materialCheckBox6.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
- this.materialCheckBox6.Location = new System.Drawing.Point(31, 251);
+ this.materialCheckBox6.Location = new System.Drawing.Point(41, 309);
this.materialCheckBox6.Margin = new System.Windows.Forms.Padding(0);
this.materialCheckBox6.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialCheckBox6.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1735,7 +1911,7 @@ private void InitializeComponent()
this.materialCheckBox5.Depth = 0;
this.materialCheckBox5.Enabled = false;
this.materialCheckBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
- this.materialCheckBox5.Location = new System.Drawing.Point(31, 209);
+ this.materialCheckBox5.Location = new System.Drawing.Point(41, 257);
this.materialCheckBox5.Margin = new System.Windows.Forms.Padding(0);
this.materialCheckBox5.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialCheckBox5.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1755,7 +1931,6 @@ private void InitializeComponent()
this.tabPage3.Controls.Add(this.materialSwitch14);
this.tabPage3.Controls.Add(this.materialSwitch16);
this.tabPage3.Controls.Add(this.materialSwitch13);
- this.tabPage3.Controls.Add(this.materialComboBox7);
this.tabPage3.Controls.Add(this.materialSwitch12);
this.tabPage3.Controls.Add(this.materialSwitch11);
this.tabPage3.Controls.Add(this.materialSwitch10);
@@ -1772,9 +1947,10 @@ private void InitializeComponent()
this.tabPage3.Controls.Add(this.materialSingleLineTextField2);
this.tabPage3.ImageKey = "round_build_white_24dp.png";
this.tabPage3.Location = new System.Drawing.Point(4, 31);
+ this.tabPage3.Margin = new System.Windows.Forms.Padding(4);
this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage3.Size = new System.Drawing.Size(1365, 648);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Textbox";
//
@@ -1793,7 +1969,8 @@ private void InitializeComponent()
this.materialMaskedTextBox1.Hint = "Phone number mask";
this.materialMaskedTextBox1.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Default;
this.materialMaskedTextBox1.LeadingIcon = global::MaterialSkinExample.Properties.Resources.round_phone_black_24dp;
- this.materialMaskedTextBox1.Location = new System.Drawing.Point(528, 437);
+ this.materialMaskedTextBox1.Location = new System.Drawing.Point(704, 538);
+ this.materialMaskedTextBox1.Margin = new System.Windows.Forms.Padding(4);
this.materialMaskedTextBox1.Mask = "+00-0-00-00-00-00";
this.materialMaskedTextBox1.MaxLength = 32767;
this.materialMaskedTextBox1.MouseState = MaterialSkin.MouseState.OUT;
@@ -1810,7 +1987,7 @@ private void InitializeComponent()
this.materialMaskedTextBox1.SelectionLength = 0;
this.materialMaskedTextBox1.SelectionStart = 15;
this.materialMaskedTextBox1.ShortcutsEnabled = true;
- this.materialMaskedTextBox1.Size = new System.Drawing.Size(384, 48);
+ this.materialMaskedTextBox1.Size = new System.Drawing.Size(512, 48);
this.materialMaskedTextBox1.SkipLiterals = true;
this.materialMaskedTextBox1.TabIndex = 81;
this.materialMaskedTextBox1.TabStop = false;
@@ -1825,7 +2002,7 @@ private void InitializeComponent()
//
this.materialSwitch15.AutoSize = true;
this.materialSwitch15.Depth = 0;
- this.materialSwitch15.Location = new System.Drawing.Point(528, 368);
+ this.materialSwitch15.Location = new System.Drawing.Point(704, 453);
this.materialSwitch15.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch15.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch15.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1841,7 +2018,7 @@ private void InitializeComponent()
//
this.materialSwitch14.AutoSize = true;
this.materialSwitch14.Depth = 0;
- this.materialSwitch14.Location = new System.Drawing.Point(528, 331);
+ this.materialSwitch14.Location = new System.Drawing.Point(704, 407);
this.materialSwitch14.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch14.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch14.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1859,7 +2036,7 @@ private void InitializeComponent()
this.materialSwitch16.Checked = true;
this.materialSwitch16.CheckState = System.Windows.Forms.CheckState.Checked;
this.materialSwitch16.Depth = 0;
- this.materialSwitch16.Location = new System.Drawing.Point(729, 295);
+ this.materialSwitch16.Location = new System.Drawing.Point(972, 363);
this.materialSwitch16.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch16.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch16.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1875,7 +2052,7 @@ private void InitializeComponent()
//
this.materialSwitch13.AutoSize = true;
this.materialSwitch13.Depth = 0;
- this.materialSwitch13.Location = new System.Drawing.Point(528, 293);
+ this.materialSwitch13.Location = new System.Drawing.Point(704, 361);
this.materialSwitch13.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch13.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch13.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1887,39 +2064,11 @@ private void InitializeComponent()
this.materialSwitch13.UseVisualStyleBackColor = true;
this.materialSwitch13.CheckedChanged += new System.EventHandler(this.materialSwitch13_CheckedChanged);
//
- // materialComboBox7
- //
- this.materialComboBox7.AutoResize = false;
- this.materialComboBox7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.materialComboBox7.Depth = 0;
- this.materialComboBox7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
- this.materialComboBox7.DropDownHeight = 174;
- this.materialComboBox7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.materialComboBox7.DropDownWidth = 121;
- this.materialComboBox7.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
- this.materialComboBox7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialComboBox7.FormattingEnabled = true;
- this.materialComboBox7.Hint = "Set prefix or Suffix";
- this.materialComboBox7.IntegralHeight = false;
- this.materialComboBox7.ItemHeight = 43;
- this.materialComboBox7.Items.AddRange(new object[] {
- "None",
- "Prefix",
- "Suffix"});
- this.materialComboBox7.Location = new System.Drawing.Point(729, 182);
- this.materialComboBox7.MaxDropDownItems = 4;
- this.materialComboBox7.MouseState = MaterialSkin.MouseState.OUT;
- this.materialComboBox7.Name = "materialComboBox7";
- this.materialComboBox7.Size = new System.Drawing.Size(183, 49);
- this.materialComboBox7.StartIndex = 0;
- this.materialComboBox7.TabIndex = 75;
- this.materialComboBox7.SelectionChangeCommitted += new System.EventHandler(this.materialComboBox7_SelectionChangeCommitted);
- //
// materialSwitch12
//
this.materialSwitch12.AutoSize = true;
this.materialSwitch12.Depth = 0;
- this.materialSwitch12.Location = new System.Drawing.Point(528, 256);
+ this.materialSwitch12.Location = new System.Drawing.Point(704, 315);
this.materialSwitch12.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch12.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch12.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1937,7 +2086,7 @@ private void InitializeComponent()
this.materialSwitch11.Checked = true;
this.materialSwitch11.CheckState = System.Windows.Forms.CheckState.Checked;
this.materialSwitch11.Depth = 0;
- this.materialSwitch11.Location = new System.Drawing.Point(528, 219);
+ this.materialSwitch11.Location = new System.Drawing.Point(704, 270);
this.materialSwitch11.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch11.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch11.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1955,7 +2104,7 @@ private void InitializeComponent()
this.materialSwitch10.Checked = true;
this.materialSwitch10.CheckState = System.Windows.Forms.CheckState.Checked;
this.materialSwitch10.Depth = 0;
- this.materialSwitch10.Location = new System.Drawing.Point(528, 182);
+ this.materialSwitch10.Location = new System.Drawing.Point(704, 224);
this.materialSwitch10.Margin = new System.Windows.Forms.Padding(0);
this.materialSwitch10.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialSwitch10.MouseState = MaterialSkin.MouseState.HOVER;
@@ -1970,6 +2119,8 @@ private void InitializeComponent()
// materialTextBox21
//
this.materialTextBox21.AnimateReadOnly = false;
+ this.materialTextBox21.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox21.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
this.materialTextBox21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.materialTextBox21.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox21.Depth = 0;
@@ -1978,7 +2129,8 @@ private void InitializeComponent()
this.materialTextBox21.HelperText = "Helper Text";
this.materialTextBox21.HideSelection = true;
this.materialTextBox21.LeadingIcon = null;
- this.materialTextBox21.Location = new System.Drawing.Point(528, 114);
+ this.materialTextBox21.Location = new System.Drawing.Point(704, 140);
+ this.materialTextBox21.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox21.MaxLength = 32767;
this.materialTextBox21.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox21.Name = "materialTextBox21";
@@ -1991,7 +2143,7 @@ private void InitializeComponent()
this.materialTextBox21.SelectionStart = 0;
this.materialTextBox21.ShortcutsEnabled = true;
this.materialTextBox21.ShowAssistiveText = true;
- this.materialTextBox21.Size = new System.Drawing.Size(384, 64);
+ this.materialTextBox21.Size = new System.Drawing.Size(512, 64);
this.materialTextBox21.TabIndex = 71;
this.materialTextBox21.TabStop = false;
this.materialTextBox21.Text = "MaterialTextBox2";
@@ -2010,7 +2162,8 @@ private void InitializeComponent()
this.materialMultiLineTextBox21.Depth = 0;
this.materialMultiLineTextBox21.HideSelection = true;
this.materialMultiLineTextBox21.Hint = "MaterialMultiLineTextBox2";
- this.materialMultiLineTextBox21.Location = new System.Drawing.Point(25, 385);
+ this.materialMultiLineTextBox21.Location = new System.Drawing.Point(33, 474);
+ this.materialMultiLineTextBox21.Margin = new System.Windows.Forms.Padding(4);
this.materialMultiLineTextBox21.MaxLength = 2147483647;
this.materialMultiLineTextBox21.MouseState = MaterialSkin.MouseState.OUT;
this.materialMultiLineTextBox21.Name = "materialMultiLineTextBox21";
@@ -2021,7 +2174,7 @@ private void InitializeComponent()
this.materialMultiLineTextBox21.SelectionLength = 0;
this.materialMultiLineTextBox21.SelectionStart = 0;
this.materialMultiLineTextBox21.ShortcutsEnabled = true;
- this.materialMultiLineTextBox21.Size = new System.Drawing.Size(406, 100);
+ this.materialMultiLineTextBox21.Size = new System.Drawing.Size(541, 123);
this.materialMultiLineTextBox21.TabIndex = 70;
this.materialMultiLineTextBox21.TabStop = false;
this.materialMultiLineTextBox21.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
@@ -2030,58 +2183,104 @@ private void InitializeComponent()
// materialTextBox5
//
this.materialTextBox5.AnimateReadOnly = false;
+ this.materialTextBox5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialTextBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialTextBox5.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox5.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialTextBox5.Depth = 0;
this.materialTextBox5.Enabled = false;
this.materialTextBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.materialTextBox5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialTextBox5.HideSelection = true;
this.materialTextBox5.Hint = "This is Disabled";
this.materialTextBox5.LeadingIcon = null;
- this.materialTextBox5.Location = new System.Drawing.Point(222, 170);
+ this.materialTextBox5.Location = new System.Drawing.Point(296, 209);
+ this.materialTextBox5.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox5.MaxLength = 50;
this.materialTextBox5.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox5.Name = "materialTextBox5";
- this.materialTextBox5.Size = new System.Drawing.Size(209, 50);
+ this.materialTextBox5.PasswordChar = '\0';
+ this.materialTextBox5.PrefixSuffixText = null;
+ this.materialTextBox5.ReadOnly = false;
+ this.materialTextBox5.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialTextBox5.SelectedText = "";
+ this.materialTextBox5.SelectionLength = 0;
+ this.materialTextBox5.SelectionStart = 0;
+ this.materialTextBox5.ShortcutsEnabled = true;
+ this.materialTextBox5.Size = new System.Drawing.Size(279, 48);
this.materialTextBox5.TabIndex = 69;
+ this.materialTextBox5.TabStop = false;
this.materialTextBox5.Text = "But with value";
+ this.materialTextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialTextBox5.TrailingIcon = null;
+ this.materialTextBox5.UseSystemPasswordChar = false;
//
// materialTextBox4
//
this.materialTextBox4.AnimateReadOnly = false;
+ this.materialTextBox4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialTextBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialTextBox4.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox4.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialTextBox4.Depth = 0;
this.materialTextBox4.Enabled = false;
- this.materialTextBox4.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialTextBox4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialTextBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
+ this.materialTextBox4.HideSelection = true;
this.materialTextBox4.Hint = "This is Disabled";
this.materialTextBox4.LeadingIcon = null;
- this.materialTextBox4.Location = new System.Drawing.Point(25, 170);
+ this.materialTextBox4.Location = new System.Drawing.Point(33, 209);
+ this.materialTextBox4.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox4.MaxLength = 50;
this.materialTextBox4.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox4.Name = "materialTextBox4";
- this.materialTextBox4.Size = new System.Drawing.Size(191, 50);
+ this.materialTextBox4.PasswordChar = '\0';
+ this.materialTextBox4.PrefixSuffixText = null;
+ this.materialTextBox4.ReadOnly = false;
+ this.materialTextBox4.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialTextBox4.SelectedText = "";
+ this.materialTextBox4.SelectionLength = 0;
+ this.materialTextBox4.SelectionStart = 0;
+ this.materialTextBox4.ShortcutsEnabled = true;
+ this.materialTextBox4.Size = new System.Drawing.Size(255, 48);
this.materialTextBox4.TabIndex = 68;
- this.materialTextBox4.Text = "";
+ this.materialTextBox4.TabStop = false;
+ this.materialTextBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialTextBox4.TrailingIcon = null;
+ this.materialTextBox4.UseSystemPasswordChar = false;
//
// materialTextBox3
//
this.materialTextBox3.AnimateReadOnly = false;
+ this.materialTextBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialTextBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialTextBox3.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox3.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialTextBox3.Depth = 0;
- this.materialTextBox3.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialTextBox3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialTextBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
+ this.materialTextBox3.HideSelection = true;
this.materialTextBox3.Hint = "This field has UseTallSize = false";
this.materialTextBox3.LeadingIcon = null;
- this.materialTextBox3.Location = new System.Drawing.Point(25, 338);
+ this.materialTextBox3.Location = new System.Drawing.Point(33, 416);
+ this.materialTextBox3.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox3.MaxLength = 50;
this.materialTextBox3.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox3.Name = "materialTextBox3";
- this.materialTextBox3.Size = new System.Drawing.Size(406, 36);
+ this.materialTextBox3.PasswordChar = '\0';
+ this.materialTextBox3.PrefixSuffixText = null;
+ this.materialTextBox3.ReadOnly = false;
+ this.materialTextBox3.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialTextBox3.SelectedText = "";
+ this.materialTextBox3.SelectionLength = 0;
+ this.materialTextBox3.SelectionStart = 0;
+ this.materialTextBox3.ShortcutsEnabled = true;
+ this.materialTextBox3.Size = new System.Drawing.Size(541, 36);
this.materialTextBox3.TabIndex = 67;
- this.materialTextBox3.Text = "";
+ this.materialTextBox3.TabStop = false;
+ this.materialTextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialTextBox3.TrailingIcon = null;
+ this.materialTextBox3.UseSystemPasswordChar = false;
this.materialTextBox3.UseTallSize = false;
//
// materialLabel27
@@ -2090,7 +2289,8 @@ private void InitializeComponent()
this.materialLabel27.Depth = 0;
this.materialLabel27.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel27.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel27.Location = new System.Drawing.Point(28, 18);
+ this.materialLabel27.Location = new System.Drawing.Point(37, 22);
+ this.materialLabel27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel27.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel27.Name = "materialLabel27";
this.materialLabel27.Size = new System.Drawing.Size(173, 58);
@@ -2102,10 +2302,11 @@ private void InitializeComponent()
this.materialLabel56.Depth = 0;
this.materialLabel56.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel56.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel56.Location = new System.Drawing.Point(525, 51);
+ this.materialLabel56.Location = new System.Drawing.Point(700, 63);
+ this.materialLabel56.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel56.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel56.Name = "materialLabel56";
- this.materialLabel56.Size = new System.Drawing.Size(413, 51);
+ this.materialLabel56.Size = new System.Drawing.Size(551, 63);
this.materialLabel56.TabIndex = 61;
this.materialLabel56.Text = "Material TextBox2 is a new variant of Material TextBox but with new code approach" +
" and with new functionality.";
@@ -2116,7 +2317,8 @@ private void InitializeComponent()
this.materialLabel23.Depth = 0;
this.materialLabel23.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel23.Location = new System.Drawing.Point(35, 89);
+ this.materialLabel23.Location = new System.Drawing.Point(47, 110);
+ this.materialLabel23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel23.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel23.Name = "materialLabel23";
this.materialLabel23.Size = new System.Drawing.Size(170, 19);
@@ -2126,57 +2328,101 @@ private void InitializeComponent()
// materialTextBox2
//
this.materialTextBox2.AnimateReadOnly = false;
+ this.materialTextBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialTextBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialTextBox2.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox2.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialTextBox2.Depth = 0;
- this.materialTextBox2.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialTextBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialTextBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
+ this.materialTextBox2.HideSelection = true;
this.materialTextBox2.Hint = "Password";
this.materialTextBox2.LeadingIcon = global::MaterialSkinExample.Properties.Resources.baseline_fingerprint_black_24dp;
- this.materialTextBox2.Location = new System.Drawing.Point(25, 282);
+ this.materialTextBox2.Location = new System.Drawing.Point(33, 347);
+ this.materialTextBox2.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox2.MaxLength = 50;
this.materialTextBox2.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox2.Name = "materialTextBox2";
- this.materialTextBox2.UseSystemPasswordChar = true;
- this.materialTextBox2.Size = new System.Drawing.Size(406, 50);
+ this.materialTextBox2.PasswordChar = '●';
+ this.materialTextBox2.PrefixSuffixText = null;
+ this.materialTextBox2.ReadOnly = false;
+ this.materialTextBox2.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialTextBox2.SelectedText = "";
+ this.materialTextBox2.SelectionLength = 0;
+ this.materialTextBox2.SelectionStart = 0;
+ this.materialTextBox2.ShortcutsEnabled = true;
+ this.materialTextBox2.Size = new System.Drawing.Size(541, 48);
this.materialTextBox2.TabIndex = 3;
- this.materialTextBox2.Text = "";
+ this.materialTextBox2.TabStop = false;
+ this.materialTextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialTextBox2.TrailingIcon = null;
+ this.materialTextBox2.UseSystemPasswordChar = true;
this.materialTextBox2.LeadingIconClick += new System.EventHandler(this.materialTextBox2_LeadingIconClick);
//
// materialTextBox1
//
this.materialTextBox1.AnimateReadOnly = false;
+ this.materialTextBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialTextBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialTextBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialTextBox1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialTextBox1.Depth = 0;
- this.materialTextBox1.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialTextBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
+ this.materialTextBox1.HideSelection = true;
this.materialTextBox1.LeadingIcon = null;
- this.materialTextBox1.Location = new System.Drawing.Point(25, 114);
+ this.materialTextBox1.Location = new System.Drawing.Point(33, 140);
+ this.materialTextBox1.Margin = new System.Windows.Forms.Padding(4);
this.materialTextBox1.MaxLength = 50;
this.materialTextBox1.MouseState = MaterialSkin.MouseState.OUT;
this.materialTextBox1.Name = "materialTextBox1";
- this.materialTextBox1.Size = new System.Drawing.Size(406, 50);
+ this.materialTextBox1.PasswordChar = '\0';
+ this.materialTextBox1.PrefixSuffixText = null;
+ this.materialTextBox1.ReadOnly = false;
+ this.materialTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialTextBox1.SelectedText = "";
+ this.materialTextBox1.SelectionLength = 0;
+ this.materialTextBox1.SelectionStart = 0;
+ this.materialTextBox1.ShortcutsEnabled = true;
+ this.materialTextBox1.Size = new System.Drawing.Size(541, 48);
this.materialTextBox1.TabIndex = 1;
- this.materialTextBox1.Text = "";
+ this.materialTextBox1.TabStop = false;
+ this.materialTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialTextBox1.TrailingIcon = global::MaterialSkinExample.Properties.Resources.baseline_favorite_border_black_24dp;
+ this.materialTextBox1.UseSystemPasswordChar = false;
//
// materialSingleLineTextField2
//
this.materialSingleLineTextField2.AnimateReadOnly = false;
+ this.materialSingleLineTextField2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;
+ this.materialSingleLineTextField2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None;
+ this.materialSingleLineTextField2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.materialSingleLineTextField2.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
this.materialSingleLineTextField2.Cursor = System.Windows.Forms.Cursors.IBeam;
this.materialSingleLineTextField2.Depth = 0;
- this.materialSingleLineTextField2.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialSingleLineTextField2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
+ this.materialSingleLineTextField2.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
+ this.materialSingleLineTextField2.HideSelection = true;
this.materialSingleLineTextField2.Hint = "Type here";
this.materialSingleLineTextField2.LeadingIcon = null;
- this.materialSingleLineTextField2.Location = new System.Drawing.Point(25, 226);
+ this.materialSingleLineTextField2.Location = new System.Drawing.Point(33, 278);
+ this.materialSingleLineTextField2.Margin = new System.Windows.Forms.Padding(4);
this.materialSingleLineTextField2.MaxLength = 50;
this.materialSingleLineTextField2.MouseState = MaterialSkin.MouseState.OUT;
this.materialSingleLineTextField2.Name = "materialSingleLineTextField2";
- this.materialSingleLineTextField2.Size = new System.Drawing.Size(406, 50);
+ this.materialSingleLineTextField2.PasswordChar = '\0';
+ this.materialSingleLineTextField2.PrefixSuffixText = null;
+ this.materialSingleLineTextField2.ReadOnly = false;
+ this.materialSingleLineTextField2.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.materialSingleLineTextField2.SelectedText = "";
+ this.materialSingleLineTextField2.SelectionLength = 0;
+ this.materialSingleLineTextField2.SelectionStart = 0;
+ this.materialSingleLineTextField2.ShortcutsEnabled = true;
+ this.materialSingleLineTextField2.Size = new System.Drawing.Size(541, 48);
this.materialSingleLineTextField2.TabIndex = 2;
- this.materialSingleLineTextField2.Text = "";
+ this.materialSingleLineTextField2.TabStop = false;
+ this.materialSingleLineTextField2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.materialSingleLineTextField2.TrailingIcon = null;
+ this.materialSingleLineTextField2.UseSystemPasswordChar = false;
//
// tabPage4
//
@@ -2186,9 +2432,10 @@ private void InitializeComponent()
this.tabPage4.Controls.Add(this.materialListView1);
this.tabPage4.ImageKey = "round_backup_white_24dp.png";
this.tabPage4.Location = new System.Drawing.Point(4, 31);
+ this.tabPage4.Margin = new System.Windows.Forms.Padding(4);
this.tabPage4.Name = "tabPage4";
- this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage4.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage4.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage4.Size = new System.Drawing.Size(1365, 648);
this.tabPage4.TabIndex = 3;
this.tabPage4.Text = "Table Example";
//
@@ -2196,10 +2443,11 @@ private void InitializeComponent()
//
this.materialLabel39.Depth = 0;
this.materialLabel39.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel39.Location = new System.Drawing.Point(22, 76);
+ this.materialLabel39.Location = new System.Drawing.Point(29, 94);
+ this.materialLabel39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel39.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel39.Name = "materialLabel39";
- this.materialLabel39.Size = new System.Drawing.Size(647, 70);
+ this.materialLabel39.Size = new System.Drawing.Size(863, 86);
this.materialLabel39.TabIndex = 64;
this.materialLabel39.Text = "This control could be better, but it\'s good enough for now - PRs are welcome! :)\r" +
"\nRecommended: AutoSizeTable = true;\r\nand then configure with Maximum/Minimum Siz" +
@@ -2211,7 +2459,8 @@ private void InitializeComponent()
this.materialLabel28.Depth = 0;
this.materialLabel28.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel28.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel28.Location = new System.Drawing.Point(28, 18);
+ this.materialLabel28.Location = new System.Drawing.Point(37, 22);
+ this.materialLabel28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel28.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel28.Name = "materialLabel28";
this.materialLabel28.Size = new System.Drawing.Size(120, 58);
@@ -2233,14 +2482,15 @@ private void InitializeComponent()
this.materialListView1.Font = new System.Drawing.Font("Microsoft Sans Serif", 34F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialListView1.FullRowSelect = true;
this.materialListView1.HideSelection = false;
- this.materialListView1.Location = new System.Drawing.Point(25, 149);
- this.materialListView1.MinimumSize = new System.Drawing.Size(200, 100);
+ this.materialListView1.Location = new System.Drawing.Point(33, 183);
+ this.materialListView1.Margin = new System.Windows.Forms.Padding(4);
+ this.materialListView1.MinimumSize = new System.Drawing.Size(267, 123);
this.materialListView1.MouseLocation = new System.Drawing.Point(-1, -1);
this.materialListView1.MouseState = MaterialSkin.MouseState.OUT;
this.materialListView1.Name = "materialListView1";
this.materialListView1.OwnerDraw = true;
this.materialListView1.Scrollable = false;
- this.materialListView1.Size = new System.Drawing.Size(547, 100);
+ this.materialListView1.Size = new System.Drawing.Size(547, 123);
this.materialListView1.TabIndex = 0;
this.materialListView1.UseCompatibleStateImageBehavior = false;
this.materialListView1.View = System.Windows.Forms.View.Details;
@@ -2278,9 +2528,10 @@ private void InitializeComponent()
this.tabPage5.Controls.Add(this.materialLabel29);
this.tabPage5.ImageKey = "round_report_problem_white_24dp.png";
this.tabPage5.Location = new System.Drawing.Point(4, 31);
+ this.tabPage5.Margin = new System.Windows.Forms.Padding(4);
this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage5.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage5.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage5.Size = new System.Drawing.Size(1365, 648);
this.tabPage5.TabIndex = 4;
this.tabPage5.Text = "Progress Bar";
//
@@ -2288,10 +2539,11 @@ private void InitializeComponent()
//
this.materialSlider1.Depth = 0;
this.materialSlider1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialSlider1.Location = new System.Drawing.Point(32, 327);
+ this.materialSlider1.Location = new System.Drawing.Point(43, 402);
+ this.materialSlider1.Margin = new System.Windows.Forms.Padding(4);
this.materialSlider1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialSlider1.Name = "materialSlider1";
- this.materialSlider1.Size = new System.Drawing.Size(300, 40);
+ this.materialSlider1.Size = new System.Drawing.Size(400, 40);
this.materialSlider1.TabIndex = 66;
this.materialSlider1.Text = "materialSlider1";
this.materialSlider1.ValueSuffix = "%";
@@ -2302,7 +2554,8 @@ private void InitializeComponent()
this.materialLabel49.Depth = 0;
this.materialLabel49.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel49.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel49.Location = new System.Drawing.Point(32, 234);
+ this.materialLabel49.Location = new System.Drawing.Point(43, 288);
+ this.materialLabel49.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel49.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel49.Name = "materialLabel49";
this.materialLabel49.Size = new System.Drawing.Size(121, 58);
@@ -2316,12 +2569,12 @@ private void InitializeComponent()
this.materialFlatButton2.Depth = 0;
this.materialFlatButton2.HighEmphasis = false;
this.materialFlatButton2.Icon = global::MaterialSkinExample.Properties.Resources.minus;
- this.materialFlatButton2.Location = new System.Drawing.Point(29, 156);
- this.materialFlatButton2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialFlatButton2.Location = new System.Drawing.Point(39, 192);
+ this.materialFlatButton2.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialFlatButton2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialFlatButton2.Name = "materialFlatButton2";
this.materialFlatButton2.NoAccentTextColor = System.Drawing.Color.Empty;
- this.materialFlatButton2.Size = new System.Drawing.Size(107, 36);
+ this.materialFlatButton2.Size = new System.Drawing.Size(108, 36);
this.materialFlatButton2.TabIndex = 1;
this.materialFlatButton2.Text = "Remove";
this.materialFlatButton2.Type = MaterialSkin.Controls.MaterialButton.MaterialButtonType.Outlined;
@@ -2336,10 +2589,11 @@ private void InitializeComponent()
this.materialLabel50.Depth = 0;
this.materialLabel50.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel50.Location = new System.Drawing.Point(29, 292);
+ this.materialLabel50.Location = new System.Drawing.Point(39, 359);
+ this.materialLabel50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel50.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel50.Name = "materialLabel50";
- this.materialLabel50.Size = new System.Drawing.Size(821, 32);
+ this.materialLabel50.Size = new System.Drawing.Size(1095, 39);
this.materialLabel50.TabIndex = 3;
this.materialLabel50.Text = "Sliders allow users to make selections from a range of values";
//
@@ -2350,10 +2604,11 @@ private void InitializeComponent()
this.materialLabel2.Depth = 0;
this.materialLabel2.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel2.Location = new System.Drawing.Point(29, 76);
+ this.materialLabel2.Location = new System.Drawing.Point(39, 94);
+ this.materialLabel2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel2.Name = "materialLabel2";
- this.materialLabel2.Size = new System.Drawing.Size(821, 63);
+ this.materialLabel2.Size = new System.Drawing.Size(1095, 78);
this.materialLabel2.TabIndex = 3;
this.materialLabel2.Text = "Here we\'re showcasing the progressbar\r\nThis control is planned be improved with a" +
"nimation and more status types\r\n";
@@ -2366,8 +2621,8 @@ private void InitializeComponent()
this.MaterialButton2.Depth = 0;
this.MaterialButton2.HighEmphasis = true;
this.MaterialButton2.Icon = global::MaterialSkinExample.Properties.Resources.round_add_black_24dp;
- this.MaterialButton2.Location = new System.Drawing.Point(755, 156);
- this.MaterialButton2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.MaterialButton2.Location = new System.Drawing.Point(1033, 192);
+ this.MaterialButton2.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.MaterialButton2.MouseState = MaterialSkin.MouseState.HOVER;
this.MaterialButton2.Name = "MaterialButton2";
this.MaterialButton2.NoAccentTextColor = System.Drawing.Color.Empty;
@@ -2384,10 +2639,11 @@ private void InitializeComponent()
this.materialProgressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.materialProgressBar1.Depth = 0;
- this.materialProgressBar1.Location = new System.Drawing.Point(29, 142);
+ this.materialProgressBar1.Location = new System.Drawing.Point(39, 175);
+ this.materialProgressBar1.Margin = new System.Windows.Forms.Padding(4);
this.materialProgressBar1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialProgressBar1.Name = "materialProgressBar1";
- this.materialProgressBar1.Size = new System.Drawing.Size(804, 5);
+ this.materialProgressBar1.Size = new System.Drawing.Size(1072, 5);
this.materialProgressBar1.TabIndex = 0;
this.materialProgressBar1.Value = 45;
//
@@ -2397,7 +2653,8 @@ private void InitializeComponent()
this.materialLabel29.Depth = 0;
this.materialLabel29.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel29.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel29.Location = new System.Drawing.Point(32, 14);
+ this.materialLabel29.Location = new System.Drawing.Point(43, 17);
+ this.materialLabel29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel29.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel29.Name = "materialLabel29";
this.materialLabel29.Size = new System.Drawing.Size(273, 58);
@@ -2419,7 +2676,7 @@ private void InitializeComponent()
this.tabPage6.Location = new System.Drawing.Point(4, 31);
this.tabPage6.Margin = new System.Windows.Forms.Padding(0);
this.tabPage6.Name = "tabPage6";
- this.tabPage6.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage6.Size = new System.Drawing.Size(1365, 648);
this.tabPage6.TabIndex = 5;
this.tabPage6.Text = "Containers";
//
@@ -2427,10 +2684,11 @@ private void InitializeComponent()
//
this.materialDivider3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialDivider3.Depth = 0;
- this.materialDivider3.Location = new System.Drawing.Point(40, 417);
+ this.materialDivider3.Location = new System.Drawing.Point(53, 513);
+ this.materialDivider3.Margin = new System.Windows.Forms.Padding(4);
this.materialDivider3.MouseState = MaterialSkin.MouseState.HOVER;
this.materialDivider3.Name = "materialDivider3";
- this.materialDivider3.Size = new System.Drawing.Size(490, 1);
+ this.materialDivider3.Size = new System.Drawing.Size(653, 1);
this.materialDivider3.TabIndex = 70;
this.materialDivider3.Text = "materialDivider3";
//
@@ -2438,10 +2696,11 @@ private void InitializeComponent()
//
this.materialDivider2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialDivider2.Depth = 0;
- this.materialDivider2.Location = new System.Drawing.Point(40, 128);
+ this.materialDivider2.Location = new System.Drawing.Point(53, 158);
+ this.materialDivider2.Margin = new System.Windows.Forms.Padding(4);
this.materialDivider2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialDivider2.Name = "materialDivider2";
- this.materialDivider2.Size = new System.Drawing.Size(1, 290);
+ this.materialDivider2.Size = new System.Drawing.Size(1, 357);
this.materialDivider2.TabIndex = 69;
this.materialDivider2.Text = "materialDivider2";
//
@@ -2449,10 +2708,11 @@ private void InitializeComponent()
//
this.materialDivider1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialDivider1.Depth = 0;
- this.materialDivider1.Location = new System.Drawing.Point(530, 128);
+ this.materialDivider1.Location = new System.Drawing.Point(707, 158);
+ this.materialDivider1.Margin = new System.Windows.Forms.Padding(4);
this.materialDivider1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialDivider1.Name = "materialDivider1";
- this.materialDivider1.Size = new System.Drawing.Size(1, 290);
+ this.materialDivider1.Size = new System.Drawing.Size(1, 357);
this.materialDivider1.TabIndex = 68;
this.materialDivider1.Text = "materialDivider1";
//
@@ -2462,7 +2722,8 @@ private void InitializeComponent()
this.materialLabel7.Depth = 0;
this.materialLabel7.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel7.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel7.Location = new System.Drawing.Point(34, 16);
+ this.materialLabel7.Location = new System.Drawing.Point(45, 20);
+ this.materialLabel7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel7.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel7.Name = "materialLabel7";
this.materialLabel7.Size = new System.Drawing.Size(108, 58);
@@ -2477,12 +2738,12 @@ private void InitializeComponent()
this.materialCard1.Controls.Add(this.materialLabel38);
this.materialCard1.Depth = 0;
this.materialCard1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialCard1.Location = new System.Drawing.Point(572, 90);
- this.materialCard1.Margin = new System.Windows.Forms.Padding(7);
+ this.materialCard1.Location = new System.Drawing.Point(763, 111);
+ this.materialCard1.Margin = new System.Windows.Forms.Padding(9);
this.materialCard1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialCard1.Name = "materialCard1";
- this.materialCard1.Padding = new System.Windows.Forms.Padding(14);
- this.materialCard1.Size = new System.Drawing.Size(301, 187);
+ this.materialCard1.Padding = new System.Windows.Forms.Padding(19, 17, 19, 17);
+ this.materialCard1.Size = new System.Drawing.Size(401, 230);
this.materialCard1.TabIndex = 66;
//
// materialButton1
@@ -2493,8 +2754,8 @@ private void InitializeComponent()
this.materialButton1.Depth = 0;
this.materialButton1.HighEmphasis = true;
this.materialButton1.Icon = null;
- this.materialButton1.Location = new System.Drawing.Point(220, 131);
- this.materialButton1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+ this.materialButton1.Location = new System.Drawing.Point(314, 169);
+ this.materialButton1.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
this.materialButton1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialButton1.Name = "materialButton1";
this.materialButton1.NoAccentTextColor = System.Drawing.Color.Empty;
@@ -2512,7 +2773,8 @@ private void InitializeComponent()
this.materialLabel4.Font = new System.Drawing.Font("Roboto Medium", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel4.FontType = MaterialSkin.MaterialSkinManager.fontType.H6;
this.materialLabel4.HighEmphasis = true;
- this.materialLabel4.Location = new System.Drawing.Point(17, 14);
+ this.materialLabel4.Location = new System.Drawing.Point(23, 17);
+ this.materialLabel4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel4.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel4.Name = "materialLabel4";
this.materialLabel4.Size = new System.Drawing.Size(229, 24);
@@ -2526,10 +2788,11 @@ private void InitializeComponent()
| System.Windows.Forms.AnchorStyles.Right)));
this.materialLabel38.Depth = 0;
this.materialLabel38.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel38.Location = new System.Drawing.Point(17, 52);
+ this.materialLabel38.Location = new System.Drawing.Point(23, 64);
+ this.materialLabel38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel38.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel38.Name = "materialLabel38";
- this.materialLabel38.Size = new System.Drawing.Size(267, 73);
+ this.materialLabel38.Size = new System.Drawing.Size(356, 90);
this.materialLabel38.TabIndex = 2;
this.materialLabel38.Text = "These are simple containers, but with a very nice shadow under them";
//
@@ -2538,13 +2801,13 @@ private void InitializeComponent()
this.materialTabControl2.Controls.Add(this.tabPage8);
this.materialTabControl2.Controls.Add(this.tabPage9);
this.materialTabControl2.Depth = 0;
- this.materialTabControl2.Location = new System.Drawing.Point(40, 128);
+ this.materialTabControl2.Location = new System.Drawing.Point(53, 158);
this.materialTabControl2.Margin = new System.Windows.Forms.Padding(0);
this.materialTabControl2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialTabControl2.Multiline = true;
this.materialTabControl2.Name = "materialTabControl2";
this.materialTabControl2.SelectedIndex = 0;
- this.materialTabControl2.Size = new System.Drawing.Size(491, 278);
+ this.materialTabControl2.Size = new System.Drawing.Size(655, 342);
this.materialTabControl2.TabIndex = 23;
//
// tabPage8
@@ -2552,10 +2815,11 @@ private void InitializeComponent()
this.tabPage8.BackColor = System.Drawing.Color.White;
this.tabPage8.Controls.Add(this.materialLabel45);
this.tabPage8.Controls.Add(this.materialLabel44);
- this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Location = new System.Drawing.Point(4, 25);
+ this.tabPage8.Margin = new System.Windows.Forms.Padding(4);
this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage8.Size = new System.Drawing.Size(483, 252);
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage8.Size = new System.Drawing.Size(647, 313);
this.tabPage8.TabIndex = 0;
this.tabPage8.Text = "FirSt";
//
@@ -2566,7 +2830,8 @@ private void InitializeComponent()
this.materialLabel45.Font = new System.Drawing.Font("Roboto Medium", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel45.FontType = MaterialSkin.MaterialSkinManager.fontType.H6;
this.materialLabel45.HighEmphasis = true;
- this.materialLabel45.Location = new System.Drawing.Point(15, 14);
+ this.materialLabel45.Location = new System.Drawing.Point(20, 17);
+ this.materialLabel45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel45.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel45.Name = "materialLabel45";
this.materialLabel45.Size = new System.Drawing.Size(174, 24);
@@ -2580,10 +2845,11 @@ private void InitializeComponent()
| System.Windows.Forms.AnchorStyles.Right)));
this.materialLabel44.Depth = 0;
this.materialLabel44.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel44.Location = new System.Drawing.Point(15, 55);
+ this.materialLabel44.Location = new System.Drawing.Point(20, 68);
+ this.materialLabel44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel44.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel44.Name = "materialLabel44";
- this.materialLabel44.Size = new System.Drawing.Size(446, 179);
+ this.materialLabel44.Size = new System.Drawing.Size(595, 217);
this.materialLabel44.TabIndex = 3;
this.materialLabel44.Text = "However, in accordance with the Material Design principles, tabs should NOT be us" +
"ed together with the Drawer menu, chose one or the other :)\r\n\r\nTry \'em!";
@@ -2592,10 +2858,11 @@ private void InitializeComponent()
//
this.tabPage9.BackColor = System.Drawing.Color.White;
this.tabPage9.Controls.Add(this.materialLabel10);
- this.tabPage9.Location = new System.Drawing.Point(4, 22);
+ this.tabPage9.Location = new System.Drawing.Point(4, 25);
+ this.tabPage9.Margin = new System.Windows.Forms.Padding(4);
this.tabPage9.Name = "tabPage9";
- this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage9.Size = new System.Drawing.Size(483, 252);
+ this.tabPage9.Padding = new System.Windows.Forms.Padding(4);
+ this.tabPage9.Size = new System.Drawing.Size(647, 313);
this.tabPage9.TabIndex = 1;
this.tabPage9.Text = "seConD";
//
@@ -2607,7 +2874,8 @@ private void InitializeComponent()
this.materialLabel10.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
this.materialLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialLabel10.HighEmphasis = true;
- this.materialLabel10.Location = new System.Drawing.Point(6, 7);
+ this.materialLabel10.Location = new System.Drawing.Point(8, 9);
+ this.materialLabel10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel10.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel10.Name = "materialLabel10";
this.materialLabel10.Size = new System.Drawing.Size(475, 58);
@@ -2621,11 +2889,11 @@ private void InitializeComponent()
this.materialTabSelector1.CharacterCasing = MaterialSkin.Controls.MaterialTabSelector.CustomCharacterCasing.Proper;
this.materialTabSelector1.Depth = 0;
this.materialTabSelector1.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialTabSelector1.Location = new System.Drawing.Point(40, 90);
+ this.materialTabSelector1.Location = new System.Drawing.Point(53, 111);
this.materialTabSelector1.Margin = new System.Windows.Forms.Padding(0);
this.materialTabSelector1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialTabSelector1.Name = "materialTabSelector1";
- this.materialTabSelector1.Size = new System.Drawing.Size(491, 38);
+ this.materialTabSelector1.Size = new System.Drawing.Size(655, 47);
this.materialTabSelector1.TabIndex = 24;
this.materialTabSelector1.Text = "materialTabSelector1";
//
@@ -2635,7 +2903,8 @@ private void InitializeComponent()
this.materialLabel30.Depth = 0;
this.materialLabel30.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel30.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel30.Location = new System.Drawing.Point(562, 16);
+ this.materialLabel30.Location = new System.Drawing.Point(749, 20);
+ this.materialLabel30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel30.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel30.Name = "materialLabel30";
this.materialLabel30.Size = new System.Drawing.Size(126, 58);
@@ -2654,8 +2923,9 @@ private void InitializeComponent()
this.tabPage10.Controls.Add(this.materialListBox1);
this.tabPage10.ImageKey = "round_bookmark_white_24dp.png";
this.tabPage10.Location = new System.Drawing.Point(4, 31);
+ this.tabPage10.Margin = new System.Windows.Forms.Padding(4);
this.tabPage10.Name = "tabPage10";
- this.tabPage10.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage10.Size = new System.Drawing.Size(1365, 648);
this.tabPage10.TabIndex = 7;
this.tabPage10.Text = "ListBox";
//
@@ -2665,7 +2935,8 @@ private void InitializeComponent()
this.materialLabel55.Depth = 0;
this.materialLabel55.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel55.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel55.Location = new System.Drawing.Point(28, 18);
+ this.materialLabel55.Location = new System.Drawing.Point(37, 22);
+ this.materialLabel55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel55.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel55.Name = "materialLabel55";
this.materialLabel55.Size = new System.Drawing.Size(158, 58);
@@ -2677,7 +2948,8 @@ private void InitializeComponent()
this.materialLabel48.AutoSize = true;
this.materialLabel48.Depth = 0;
this.materialLabel48.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel48.Location = new System.Drawing.Point(587, 98);
+ this.materialLabel48.Location = new System.Drawing.Point(783, 121);
+ this.materialLabel48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel48.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel48.Name = "materialLabel48";
this.materialLabel48.Size = new System.Drawing.Size(130, 19);
@@ -2689,7 +2961,8 @@ private void InitializeComponent()
this.materialLabel47.AutoSize = true;
this.materialLabel47.Depth = 0;
this.materialLabel47.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel47.Location = new System.Drawing.Point(314, 98);
+ this.materialLabel47.Location = new System.Drawing.Point(419, 121);
+ this.materialLabel47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel47.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel47.Name = "materialLabel47";
this.materialLabel47.Size = new System.Drawing.Size(121, 19);
@@ -2701,7 +2974,8 @@ private void InitializeComponent()
this.materialLabel46.AutoSize = true;
this.materialLabel46.Depth = 0;
this.materialLabel46.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel46.Location = new System.Drawing.Point(49, 98);
+ this.materialLabel46.Location = new System.Drawing.Point(65, 121);
+ this.materialLabel46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel46.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel46.Name = "materialLabel46";
this.materialLabel46.Size = new System.Drawing.Size(129, 19);
@@ -2738,12 +3012,13 @@ private void InitializeComponent()
this.materialListBox3.Items.Add(materialListBoxItem4);
this.materialListBox3.Items.Add(materialListBoxItem5);
this.materialListBox3.Items.Add(materialListBoxItem6);
- this.materialListBox3.Location = new System.Drawing.Point(579, 132);
+ this.materialListBox3.Location = new System.Drawing.Point(772, 162);
+ this.materialListBox3.Margin = new System.Windows.Forms.Padding(4);
this.materialListBox3.MouseState = MaterialSkin.MouseState.HOVER;
this.materialListBox3.Name = "materialListBox3";
this.materialListBox3.SelectedIndex = -1;
this.materialListBox3.SelectedItem = null;
- this.materialListBox3.Size = new System.Drawing.Size(200, 160);
+ this.materialListBox3.Size = new System.Drawing.Size(267, 197);
this.materialListBox3.Style = MaterialSkin.Controls.MaterialListBox.ListBoxStyle.ThreeLine;
this.materialListBox3.TabIndex = 2;
//
@@ -2777,12 +3052,13 @@ private void InitializeComponent()
this.materialListBox2.Items.Add(materialListBoxItem10);
this.materialListBox2.Items.Add(materialListBoxItem11);
this.materialListBox2.Items.Add(materialListBoxItem12);
- this.materialListBox2.Location = new System.Drawing.Point(306, 132);
+ this.materialListBox2.Location = new System.Drawing.Point(408, 162);
+ this.materialListBox2.Margin = new System.Windows.Forms.Padding(4);
this.materialListBox2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialListBox2.Name = "materialListBox2";
this.materialListBox2.SelectedIndex = -1;
this.materialListBox2.SelectedItem = null;
- this.materialListBox2.Size = new System.Drawing.Size(200, 160);
+ this.materialListBox2.Size = new System.Drawing.Size(267, 197);
this.materialListBox2.Style = MaterialSkin.Controls.MaterialListBox.ListBoxStyle.TwoLine;
this.materialListBox2.TabIndex = 1;
this.materialListBox2.UseAccentColor = true;
@@ -2817,12 +3093,13 @@ private void InitializeComponent()
this.materialListBox1.Items.Add(materialListBoxItem16);
this.materialListBox1.Items.Add(materialListBoxItem17);
this.materialListBox1.Items.Add(materialListBoxItem18);
- this.materialListBox1.Location = new System.Drawing.Point(38, 132);
+ this.materialListBox1.Location = new System.Drawing.Point(51, 162);
+ this.materialListBox1.Margin = new System.Windows.Forms.Padding(4);
this.materialListBox1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialListBox1.Name = "materialListBox1";
this.materialListBox1.SelectedIndex = -1;
this.materialListBox1.SelectedItem = null;
- this.materialListBox1.Size = new System.Drawing.Size(200, 160);
+ this.materialListBox1.Size = new System.Drawing.Size(267, 197);
this.materialListBox1.TabIndex = 0;
//
// tabPage11
@@ -2831,8 +3108,9 @@ private void InitializeComponent()
this.tabPage11.Controls.Add(this.flowLayoutPanel1);
this.tabPage11.ImageKey = "round_http_white_24dp.png";
this.tabPage11.Location = new System.Drawing.Point(4, 31);
+ this.tabPage11.Margin = new System.Windows.Forms.Padding(4);
this.tabPage11.Name = "tabPage11";
- this.tabPage11.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage11.Size = new System.Drawing.Size(1365, 648);
this.tabPage11.TabIndex = 8;
this.tabPage11.Text = "Expansion panel";
//
@@ -2844,9 +3122,10 @@ private void InitializeComponent()
this.flowLayoutPanel1.Controls.Add(this.materialExpansionPanel1);
this.flowLayoutPanel1.Controls.Add(this.materialExpansionPanel2);
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
- this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
+ this.flowLayoutPanel1.Location = new System.Drawing.Point(4, 4);
+ this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
- this.flowLayoutPanel1.Size = new System.Drawing.Size(561, 514);
+ this.flowLayoutPanel1.Size = new System.Drawing.Size(748, 633);
this.flowLayoutPanel1.TabIndex = 0;
this.flowLayoutPanel1.WrapContents = false;
//
@@ -2855,14 +3134,15 @@ private void InitializeComponent()
this.materialExpansionPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.materialExpansionPanel1.Controls.Add(this.materialLabel51);
this.materialExpansionPanel1.Depth = 0;
+ this.materialExpansionPanel1.ExpandHeight = 295;
this.materialExpansionPanel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialExpansionPanel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialExpansionPanel1.Location = new System.Drawing.Point(16, 16);
- this.materialExpansionPanel1.Margin = new System.Windows.Forms.Padding(16);
+ this.materialExpansionPanel1.Location = new System.Drawing.Point(21, 20);
+ this.materialExpansionPanel1.Margin = new System.Windows.Forms.Padding(21, 20, 21, 20);
this.materialExpansionPanel1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialExpansionPanel1.Name = "materialExpansionPanel1";
- this.materialExpansionPanel1.Padding = new System.Windows.Forms.Padding(24, 64, 24, 16);
- this.materialExpansionPanel1.Size = new System.Drawing.Size(523, 240);
+ this.materialExpansionPanel1.Padding = new System.Windows.Forms.Padding(32, 79, 32, 20);
+ this.materialExpansionPanel1.Size = new System.Drawing.Size(697, 295);
this.materialExpansionPanel1.TabIndex = 0;
this.materialExpansionPanel1.Title = "Expansion panel";
//
@@ -2870,10 +3150,11 @@ private void InitializeComponent()
//
this.materialLabel51.Depth = 0;
this.materialLabel51.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
- this.materialLabel51.Location = new System.Drawing.Point(28, 68);
+ this.materialLabel51.Location = new System.Drawing.Point(37, 84);
+ this.materialLabel51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel51.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel51.Name = "materialLabel51";
- this.materialLabel51.Size = new System.Drawing.Size(468, 64);
+ this.materialLabel51.Size = new System.Drawing.Size(624, 79);
this.materialLabel51.TabIndex = 2;
this.materialLabel51.Text = "An expansion panel is a lightweight container that may either stand alone or be c" +
"onnected to a larger surface, such as a card.";
@@ -2886,12 +3167,12 @@ private void InitializeComponent()
this.materialExpansionPanel2.Description = "With accent color";
this.materialExpansionPanel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialExpansionPanel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialExpansionPanel2.Location = new System.Drawing.Point(16, 273);
- this.materialExpansionPanel2.Margin = new System.Windows.Forms.Padding(16, 1, 16, 0);
+ this.materialExpansionPanel2.Location = new System.Drawing.Point(21, 336);
+ this.materialExpansionPanel2.Margin = new System.Windows.Forms.Padding(21, 1, 21, 0);
this.materialExpansionPanel2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialExpansionPanel2.Name = "materialExpansionPanel2";
- this.materialExpansionPanel2.Padding = new System.Windows.Forms.Padding(24, 64, 24, 16);
- this.materialExpansionPanel2.Size = new System.Drawing.Size(523, 48);
+ this.materialExpansionPanel2.Padding = new System.Windows.Forms.Padding(32, 79, 32, 20);
+ this.materialExpansionPanel2.Size = new System.Drawing.Size(697, 48);
this.materialExpansionPanel2.TabIndex = 2;
this.materialExpansionPanel2.Title = "Expansion panel";
this.materialExpansionPanel2.UseAccentColor = true;
@@ -2920,8 +3201,9 @@ private void InitializeComponent()
this.tabPage12.Controls.Add(this.materialLabel54);
this.tabPage12.ImageKey = "round_phone_black_24dp.png";
this.tabPage12.Location = new System.Drawing.Point(4, 31);
+ this.tabPage12.Margin = new System.Windows.Forms.Padding(4);
this.tabPage12.Name = "tabPage12";
- this.tabPage12.Size = new System.Drawing.Size(1015, 520);
+ this.tabPage12.Size = new System.Drawing.Size(1365, 648);
this.tabPage12.TabIndex = 9;
this.tabPage12.Text = "Label";
//
@@ -2932,7 +3214,8 @@ private void InitializeComponent()
this.materialLabel58.Font = new System.Drawing.Font("Roboto", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel58.FontType = MaterialSkin.MaterialSkinManager.fontType.SubtleEmphasis;
this.materialLabel58.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel58.Location = new System.Drawing.Point(492, 483);
+ this.materialLabel58.Location = new System.Drawing.Point(656, 594);
+ this.materialLabel58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel58.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel58.Name = "materialLabel58";
this.materialLabel58.Size = new System.Drawing.Size(89, 14);
@@ -2944,10 +3227,11 @@ private void InitializeComponent()
this.materialLabel43.Depth = 0;
this.materialLabel43.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel43.Location = new System.Drawing.Point(675, 283);
+ this.materialLabel43.Location = new System.Drawing.Point(900, 348);
+ this.materialLabel43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel43.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel43.Name = "materialLabel43";
- this.materialLabel43.Size = new System.Drawing.Size(245, 103);
+ this.materialLabel43.Size = new System.Drawing.Size(327, 127);
this.materialLabel43.TabIndex = 83;
this.materialLabel43.Text = "Want to make a multiline label?\r\nNo problem! just disable the AutoSize Property\r\n" +
"TextAlign should work too";
@@ -2961,7 +3245,8 @@ private void InitializeComponent()
this.materialLabel42.Font = new System.Drawing.Font("Roboto Medium", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel42.FontType = MaterialSkin.MaterialSkinManager.fontType.Subtitle2;
this.materialLabel42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel42.Location = new System.Drawing.Point(643, 468);
+ this.materialLabel42.Location = new System.Drawing.Point(857, 576);
+ this.materialLabel42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel42.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel42.Name = "materialLabel42";
this.materialLabel42.Size = new System.Drawing.Size(269, 17);
@@ -2976,7 +3261,8 @@ private void InitializeComponent()
this.materialLabel41.FontType = MaterialSkin.MaterialSkinManager.fontType.Subtitle2;
this.materialLabel41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialLabel41.HighEmphasis = true;
- this.materialLabel41.Location = new System.Drawing.Point(643, 441);
+ this.materialLabel41.Location = new System.Drawing.Point(857, 543);
+ this.materialLabel41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel41.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel41.Name = "materialLabel41";
this.materialLabel41.Size = new System.Drawing.Size(302, 17);
@@ -2992,7 +3278,8 @@ private void InitializeComponent()
this.materialLabel40.FontType = MaterialSkin.MaterialSkinManager.fontType.Subtitle2;
this.materialLabel40.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialLabel40.HighEmphasis = true;
- this.materialLabel40.Location = new System.Drawing.Point(643, 415);
+ this.materialLabel40.Location = new System.Drawing.Point(857, 511);
+ this.materialLabel40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel40.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel40.Name = "materialLabel40";
this.materialLabel40.Size = new System.Drawing.Size(217, 17);
@@ -3006,7 +3293,8 @@ private void InitializeComponent()
this.materialLabel22.Font = new System.Drawing.Font("Roboto", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel22.FontType = MaterialSkin.MaterialSkinManager.fontType.Overline;
this.materialLabel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel22.Location = new System.Drawing.Point(492, 468);
+ this.materialLabel22.Location = new System.Drawing.Point(656, 576);
+ this.materialLabel22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel22.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel22.Name = "materialLabel22";
this.materialLabel22.Size = new System.Drawing.Size(47, 13);
@@ -3020,7 +3308,8 @@ private void InitializeComponent()
this.materialLabel21.Font = new System.Drawing.Font("Roboto", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel21.FontType = MaterialSkin.MaterialSkinManager.fontType.Caption;
this.materialLabel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel21.Location = new System.Drawing.Point(492, 448);
+ this.materialLabel21.Location = new System.Drawing.Point(656, 551);
+ this.materialLabel21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel21.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel21.Name = "materialLabel21";
this.materialLabel21.Size = new System.Drawing.Size(44, 14);
@@ -3034,7 +3323,8 @@ private void InitializeComponent()
this.materialLabel20.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel20.FontType = MaterialSkin.MaterialSkinManager.fontType.Button;
this.materialLabel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel20.Location = new System.Drawing.Point(492, 428);
+ this.materialLabel20.Location = new System.Drawing.Point(656, 527);
+ this.materialLabel20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel20.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel20.Name = "materialLabel20";
this.materialLabel20.Size = new System.Drawing.Size(57, 17);
@@ -3048,7 +3338,8 @@ private void InitializeComponent()
this.materialLabel19.Font = new System.Drawing.Font("Roboto", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel19.FontType = MaterialSkin.MaterialSkinManager.fontType.Body2;
this.materialLabel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel19.Location = new System.Drawing.Point(492, 407);
+ this.materialLabel19.Location = new System.Drawing.Point(656, 501);
+ this.materialLabel19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel19.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel19.Name = "materialLabel19";
this.materialLabel19.Size = new System.Drawing.Size(44, 17);
@@ -3061,7 +3352,8 @@ private void InitializeComponent()
this.materialLabel18.Depth = 0;
this.materialLabel18.Font = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel18.Location = new System.Drawing.Point(492, 384);
+ this.materialLabel18.Location = new System.Drawing.Point(656, 473);
+ this.materialLabel18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel18.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel18.Name = "materialLabel18";
this.materialLabel18.Size = new System.Drawing.Size(50, 19);
@@ -3075,7 +3367,8 @@ private void InitializeComponent()
this.materialLabel17.Font = new System.Drawing.Font("Roboto Medium", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel17.FontType = MaterialSkin.MaterialSkinManager.fontType.Subtitle2;
this.materialLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel17.Location = new System.Drawing.Point(492, 365);
+ this.materialLabel17.Location = new System.Drawing.Point(656, 449);
+ this.materialLabel17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel17.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel17.Name = "materialLabel17";
this.materialLabel17.Size = new System.Drawing.Size(62, 17);
@@ -3089,7 +3382,8 @@ private void InitializeComponent()
this.materialLabel1.Font = new System.Drawing.Font("Roboto", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel1.FontType = MaterialSkin.MaterialSkinManager.fontType.Subtitle1;
this.materialLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel1.Location = new System.Drawing.Point(491, 342);
+ this.materialLabel1.Location = new System.Drawing.Point(655, 421);
+ this.materialLabel1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel1.Name = "materialLabel1";
this.materialLabel1.Size = new System.Drawing.Size(68, 19);
@@ -3103,7 +3397,8 @@ private void InitializeComponent()
this.materialLabel16.Font = new System.Drawing.Font("Roboto Medium", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel16.FontType = MaterialSkin.MaterialSkinManager.fontType.H6;
this.materialLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel16.Location = new System.Drawing.Point(491, 314);
+ this.materialLabel16.Location = new System.Drawing.Point(655, 386);
+ this.materialLabel16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel16.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel16.Name = "materialLabel16";
this.materialLabel16.Size = new System.Drawing.Size(91, 24);
@@ -3117,7 +3412,8 @@ private void InitializeComponent()
this.materialLabel15.Font = new System.Drawing.Font("Roboto", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel15.FontType = MaterialSkin.MaterialSkinManager.fontType.H5;
this.materialLabel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel15.Location = new System.Drawing.Point(490, 283);
+ this.materialLabel15.Location = new System.Drawing.Point(653, 348);
+ this.materialLabel15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel15.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel15.Name = "materialLabel15";
this.materialLabel15.Size = new System.Drawing.Size(109, 29);
@@ -3131,7 +3427,8 @@ private void InitializeComponent()
this.materialLabel14.Font = new System.Drawing.Font("Roboto", 34F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel14.FontType = MaterialSkin.MaterialSkinManager.fontType.H4;
this.materialLabel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel14.Location = new System.Drawing.Point(488, 242);
+ this.materialLabel14.Location = new System.Drawing.Point(651, 298);
+ this.materialLabel14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel14.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel14.Name = "materialLabel14";
this.materialLabel14.Size = new System.Drawing.Size(154, 41);
@@ -3145,7 +3442,8 @@ private void InitializeComponent()
this.materialLabel13.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel13.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
this.materialLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel13.Location = new System.Drawing.Point(485, 185);
+ this.materialLabel13.Location = new System.Drawing.Point(647, 228);
+ this.materialLabel13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel13.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel13.Name = "materialLabel13";
this.materialLabel13.Size = new System.Drawing.Size(217, 58);
@@ -3159,7 +3457,8 @@ private void InitializeComponent()
this.materialLabel12.Font = new System.Drawing.Font("Roboto Light", 60F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel12.FontType = MaterialSkin.MaterialSkinManager.fontType.H2;
this.materialLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel12.Location = new System.Drawing.Point(482, 114);
+ this.materialLabel12.Location = new System.Drawing.Point(643, 140);
+ this.materialLabel12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel12.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel12.Name = "materialLabel12";
this.materialLabel12.Size = new System.Drawing.Size(266, 72);
@@ -3173,7 +3472,8 @@ private void InitializeComponent()
this.materialLabel11.Font = new System.Drawing.Font("Roboto Light", 96F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel11.FontType = MaterialSkin.MaterialSkinManager.fontType.H1;
this.materialLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
- this.materialLabel11.Location = new System.Drawing.Point(475, 18);
+ this.materialLabel11.Location = new System.Drawing.Point(633, 22);
+ this.materialLabel11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel11.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel11.Name = "materialLabel11";
this.materialLabel11.Size = new System.Drawing.Size(427, 115);
@@ -3186,7 +3486,8 @@ private void InitializeComponent()
this.materialLabel54.Depth = 0;
this.materialLabel54.Font = new System.Drawing.Font("Roboto", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.materialLabel54.FontType = MaterialSkin.MaterialSkinManager.fontType.H3;
- this.materialLabel54.Location = new System.Drawing.Point(28, 18);
+ this.materialLabel54.Location = new System.Drawing.Point(37, 22);
+ this.materialLabel54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.materialLabel54.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel54.Name = "materialLabel54";
this.materialLabel54.Size = new System.Drawing.Size(117, 58);
@@ -3231,7 +3532,7 @@ private void InitializeComponent()
this.materialContextMenuStrip1.Margin = new System.Windows.Forms.Padding(16, 8, 16, 8);
this.materialContextMenuStrip1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialContextMenuStrip1.Name = "materialContextMenuStrip1";
- this.materialContextMenuStrip1.Size = new System.Drawing.Size(170, 130);
+ this.materialContextMenuStrip1.Size = new System.Drawing.Size(198, 130);
//
// item1ToolStripMenuItem
//
@@ -3276,7 +3577,7 @@ private void InitializeComponent()
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(166, 6);
+ this.toolStripSeparator1.Size = new System.Drawing.Size(194, 6);
//
// item3ToolStripMenuItem
//
@@ -3287,16 +3588,18 @@ private void InitializeComponent()
//
// MainForm
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(1029, 622);
+ this.ClientSize = new System.Drawing.Size(1381, 766);
this.ContextMenuStrip = this.materialContextMenuStrip1;
this.Controls.Add(this.materialTabControl1);
this.DrawerShowIconsWhenHidden = true;
this.DrawerTabControl = this.materialTabControl1;
- this.MinimumSize = new System.Drawing.Size(300, 200);
+ this.Margin = new System.Windows.Forms.Padding(4);
+ this.MinimumSize = new System.Drawing.Size(400, 246);
this.Name = "MainForm";
+ this.Padding = new System.Windows.Forms.Padding(4, 79, 4, 4);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MaterialSkin Demo";
this.materialTabControl1.ResumeLayout(false);
@@ -3413,7 +3716,6 @@ private void InitializeComponent()
private MaterialLabel materialLabel30;
private MaterialSwitch materialSwitch7;
private MaterialRadioButton materialRadioButton5;
- private MaterialFloatingActionButton materialFloatingActionButton1;
private MaterialLabel materialLabel3;
private MaterialComboBox materialComboBox1;
private MaterialLabel materialLabel34;
@@ -3504,5 +3806,27 @@ private void InitializeComponent()
private MaterialLabel materialLabel57;
private MaterialSwitch materialSwitch16;
private MaterialLabel materialLabel58;
+ private MaterialButton materialButton43;
+ private MaterialButton materialButton42;
+ private MaterialButton materialButton41;
+ private MaterialButton materialButton40;
+ private MaterialButton materialButton39;
+ private MaterialButton materialButton38;
+ private MaterialButton materialButton31;
+ private MaterialButton materialButton30;
+ private MaterialButton materialButton29;
+ private MaterialButton materialButton28;
+ private MaterialButton materialButton27;
+ private MaterialButton materialButton26;
+ private MaterialFloatingActionButton materialFloatingActionButton1;
+ private MaterialButton materialButton37;
+ private MaterialButton materialButton36;
+ private MaterialButton materialButton35;
+ private MaterialButton materialButton34;
+ private MaterialButton materialButton33;
+ private MaterialButton materialButton32;
+ private MaterialButton materialButton46;
+ private MaterialButton materialButton44;
+ private MaterialButton materialButton45;
}
}
diff --git a/MaterialSkinExample/MainForm.cs b/MaterialSkinExample/MainForm.cs
index 79a48317..3871b7bc 100644
--- a/MaterialSkinExample/MainForm.cs
+++ b/MaterialSkinExample/MainForm.cs
@@ -24,7 +24,7 @@ public MainForm()
// MaterialSkinManager properties
materialSkinManager.AddFormToManage(this);
materialSkinManager.Theme = MaterialSkinManager.Themes.LIGHT;
- materialSkinManager.ColorScheme = new ColorScheme(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE);
+ materialSkinManager.ColorScheme = new ColorScheme(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE, Primary.Green700, Primary.Cyan700, Primary.Yellow700, Primary.Red700);
// Add dummy data to the listview
seedListView();
@@ -36,19 +36,19 @@ public MainForm()
materialCheckedListBox1.Items.Add("Item6", false);
materialCheckedListBox1.Items.Add("Item7", false);
- materialComboBox6.SelectedIndex = 0;
+ //materialComboBox6.SelectedIndex = 0;
materialListBoxFormStyle.Clear();
foreach (var FormStyleItem in Enum.GetNames(typeof(MaterialForm.FormStyles)))
{
materialListBoxFormStyle.AddItem(FormStyleItem);
- if (FormStyleItem == this.FormStyle.ToString()) materialListBoxFormStyle.SelectedIndex = materialListBoxFormStyle.Items.Count-1;
+ if (FormStyleItem == this.FormStyle.ToString()) materialListBoxFormStyle.SelectedIndex = materialListBoxFormStyle.Items.Count - 1;
}
materialListBoxFormStyle.SelectedIndexChanged += (sender, args) =>
{
MaterialForm.FormStyles SelectedStyle = (MaterialForm.FormStyles)Enum.Parse(typeof(MaterialForm.FormStyles), args.Text);
- if (this.FormStyle!= SelectedStyle) this.FormStyle = SelectedStyle;
+ if (this.FormStyle != SelectedStyle) this.FormStyle = SelectedStyle;
};
materialMaskedTextBox1.ValidatingType = typeof(System.Int16);
@@ -101,8 +101,8 @@ private void updateColor()
materialSkinManager.Theme == MaterialSkinManager.Themes.DARK ? Primary.Teal500 : Primary.Indigo500,
materialSkinManager.Theme == MaterialSkinManager.Themes.DARK ? Primary.Teal700 : Primary.Indigo700,
materialSkinManager.Theme == MaterialSkinManager.Themes.DARK ? Primary.Teal200 : Primary.Indigo100,
- Accent.Pink200,
- TextShade.WHITE);
+ Accent.Pink200, TextShade.WHITE,
+ Primary.Green700, Primary.Cyan700, Primary.Yellow700, Primary.Red700);
break;
case 1:
@@ -110,8 +110,8 @@ private void updateColor()
Primary.Green600,
Primary.Green700,
Primary.Green200,
- Accent.Red100,
- TextShade.WHITE);
+ Accent.Red100, TextShade.WHITE,
+ Primary.Green700, Primary.Cyan700, Primary.Yellow700, Primary.Red700);
break;
case 2:
@@ -119,8 +119,8 @@ private void updateColor()
Primary.BlueGrey800,
Primary.BlueGrey900,
Primary.BlueGrey500,
- Accent.LightBlue200,
- TextShade.WHITE);
+ Accent.LightBlue200, TextShade.WHITE,
+ Primary.Green700, Primary.Cyan700, Primary.Yellow700, Primary.Red700);
break;
}
Invalidate();
@@ -222,13 +222,13 @@ private void materialComboBox7_SelectionChangeCommitted(object sender, EventArgs
{
if (materialComboBox7.SelectedIndex == 1)
{
- materialTextBox21.PrefixSuffix = MaterialTextBox2.PrefixSuffixTypes.Prefix;
+ materialTextBox21.PrefixSuffix = MaterialTextBox2.PrefixSuffixTypes.Prefix;
}
else if (materialComboBox7.SelectedIndex == 2)
{
materialTextBox21.PrefixSuffix = MaterialTextBox2.PrefixSuffixTypes.Suffix;
}
- else
+ else
{
materialTextBox21.PrefixSuffix = MaterialTextBox2.PrefixSuffixTypes.None;
}
@@ -272,23 +272,20 @@ private void MsReadOnly_CheckedChanged(object sender, EventArgs e)
{
materialCheckbox1.ReadOnly = msReadOnly.Checked;
}
-
+
private void materialButton25_Click(object sender, EventArgs e)
{
- MaterialDialog materialDialog = new MaterialDialog(this,"Dialog Title", "Dialogs inform users about a task and can contain critical information, require decisions, or involve multiple tasks.", "OK", true, "Cancel");
+ MaterialDialog materialDialog = new MaterialDialog(this, "Dialog Title", "Dialogs inform users about a task and can contain critical information, require decisions, or involve multiple tasks.", "OK", true, "Cancel");
DialogResult result = materialDialog.ShowDialog(this);
- MaterialSnackBar SnackBarMessage = new MaterialSnackBar(result.ToString(),750);
+ MaterialSnackBar SnackBarMessage = new MaterialSnackBar(result.ToString(), 750);
SnackBarMessage.Show(this);
}
-
+
private void materialSwitch16_CheckedChanged(object sender, EventArgs e)
{
materialTextBox21.ShowAssistiveText = materialSwitch16.Checked;
}
-
-
-
}
}
diff --git a/MaterialSkinExample/MainForm.resx b/MaterialSkinExample/MainForm.resx
index e788af04..b9b97b8d 100644
--- a/MaterialSkinExample/MainForm.resx
+++ b/MaterialSkinExample/MainForm.resx
@@ -131,7 +131,7 @@ If any of the buttons looks weird while designing, change the tab background col
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABs
- NgAAAk1TRnQBSQFMAgEBEgEAAZABBgGQAQYBGAEAARgBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFg
+ NgAAAk1TRnQBSQFMAgEBEgEAAfgBBgH4AQYBGAEAARgBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFg
AwABeAMAAQEBAAEgBgABtP8A/wD/ADEAAwwBEAM9AWcDWAG7A1wB5wMAAf8DAAH/A10B4wNUAa8DOQFf
AwYBCCgAAy8BSQNdAeMDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wNdAeMDLgFI5AADPgFrA2AB6wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
@@ -151,17 +151,17 @@ If any of the buttons looks weird while designing, change the tab background col
Af8DAAH/AwAB/wNZAccUAAMGAf4DAAH/HAADWQHEAwAB/wMAAf8DAAH/A1kBxAsAAf8DAAH/1wAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A0ABbwNAAW8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wNdAeMUAAMGAf4DAAH/OwAB/wMAAf/XAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNcAd8UAAMdAf0DAAH/OwAB/wMA
+ AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNcAd8UAAMqAf0DAAH/OwAB/wMA
Af/UAANdAeMDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wsAAf8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/A1kBwxQAAx0B/QMAAf87AAH/AwAB/9QAA1QBrwMAAf8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DSwGPFAADHQH9AwAB/zsA
+ AwAB/wMAAf8DAAH/A1kBwxQAAyoB/QMAAf87AAH/AwAB/9QAA1QBrwMAAf8DAAH/AwAB/wMAAf8DAAH/
+ AwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DSwGPFAADKgH9AwAB/zsA
Af8DAAH/1AADOQFfAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/AwAB/wMqAUAUAAMdAf0DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
+ AwAB/wMAAf8DAAH/AwAB/wMqAUAUAAMqAf0DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/9QAAwYBCANcAd8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/A0sBjwNLAY8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A1kBxxgAAx0B/QMA
+ AwAB/wMAAf8DAAH/A0sBjwNLAY8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A1kBxxgAAyoB/QMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/2AADNQFXAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/AyEB+wMoATwYAAMdAfwDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
+ AwAB/wMAAf8DAAH/AyEB+wMoATwYAAMqAfwDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/9wAA0oBiwMAAf8DAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/Az4BaxwAA18B4AMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DXQHi3AADAwEE
@@ -181,24 +181,24 @@ If any of the buttons looks weird while designing, change the tab background col
Aw0BEUAAAwEBAgNKAYsDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DSgGLAwEBAiMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8fAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A1YBswMqAUADCQEMAwkBDAMq
- AUADVgGzAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xQAA0MBeAMAAf8DHQH8A0cBggMEAQZMAANK
+ AUADVgGzAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xQAA0MBeAMAAf8DKgH8A0cBggMEAQZMAANK
AYsDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNK
AYsgAANcAd8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
AwAB/wNcAd8fAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DRAF6GAADRAF6AwAB/wMAAf8DAAH/AwAB/wMA
- Af8DAAH/EAADLAFDAwYB/gMdAfwDMgFRUAADMwFSAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
+ Af8DAAH/EAADLAFDAwYB/gMqAfwDMgFRUAADMwFSAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMzAVIcAAMyAVEDKQH6AwAB/wMAAf8DAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AykB+gMyAVEfAAH/AwAB/wMAAf8DAAH/
AwAB/wNVAbIEAAMEAQYDSQGHA2EB5gNhAeYDSQGHAwQBBgQAA1UBsgMAAf8DAAH/AwAB/wMAAf8DAAH/
- DAADAwEEA18B2wMAAf8DQgF0DAADMQFNA1kBvgNSAfADWAHyA1gBwQMwAUwEAAM5AV8DXAHRAykB+gNc
+ DAADAwEEA18B2wMAAf8DQgF0DAADMQFNA1kBvgNSAfADWQHyA1gBwQMwAUwEAAM5AV8DXAHRAykB+gNc
Ac4DNQFWFAADBAEGA1wB3AMAAf8DAAH/AwAB/wNbAd4DRwGDA1wB6gMAAf8DAAH/AwAB/wMAAf8DWgHp
A0cBgwNcAd8DAAH/AwAB/wMAAf8DXAHcAwQBBhwAAyQBNgNYAcEDAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/A1gBwQMkATYjAAH/AwAB/wMAAf8DAAH/AwAB/wMqAUAEAANJAYgDAAH/
AwAB/wMAAf8DAAH/A0kBiAQAAyoBQAMAAf8DAAH/AwAB/wMAAf8DAAH/DAADMQFOAwAB/wNbAdYDAgED
CAADSAGFAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A1gBwQMAAf8DAAH/AwAB/wMAAf8DBgH+AzMBUhAA
AzUBVQMAAf8DAAH/AwAB/wMAAf8DRwGDBAADHwEsA1oB6QMAAf8DAAH/A1oB6QMeASsEAANIAYUDAAH/
- AwAB/wMAAf8DAAH/AzUBVSQAAxkBIwM/AWwDVQGyA1sB2ANYAfIDAAH/A2AB4QNVAbIDPwFsAxkBIysA
+ AwAB/wMAAf8DAAH/AzUBVSQAAxkBIwM/AWwDVQGyA1sB2ANZAfIDAAH/A2AB4QNVAbIDPwFsAxkBIysA
Af8DAAH/AwAB/wMAAf8DAAH/AwoBDQQAA14B5QMAAf8DAAH/AwAB/wMAAf8DXgHlBAADCgENAwAB/wMA
- Af8DAAH/AwAB/wMAAf8MAANSAaYDAAH/A0ABcAgAAzABSwMAAf8DOAH5A0MBdwMSARgDEgEYA0MBdwM4
+ Af8DAAH/AwAB/wMAAf8MAANSAaYDAAH/A0ABcAgAAzABSwMAAf8DQQH5A0MBdwMSARgDEgEYA0MBdwNB
AfkDAAH/AwAB/wNIAYYDCwEPA0gBhgMAAf8DXAHMEAADUQGlAwAB/wMAAf8DAAH/AwAB/wNcAeoDHwEs
BAADHwEsA1oB6QNaAekDHgErBAADHwEtA2AB6wMAAf8DAAH/AwAB/wMAAf8DUQGldwAB/wMAAf8DAAH/
AwAB/wMAAf8DCgENBAADXgHlAwAB/wMAAf8DAAH/AwAB/wNeAeUEAAMKAQ0DAAH/AwAB/wMAAf8DAAH/
@@ -206,71 +206,71 @@ If any of the buttons looks weird while designing, change the tab background col
Az4B+BAAA1sB2AMAAf8DAAH/AwAB/wMAAf8DAAH/A1oB6QMfASwEAAMfASwDHwEsBAADHwEtA1wB6gMA
Af8DAAH/AwAB/wMAAf8DAAH/A1sB2HcAAf8DAAH/AwAB/wMAAf8DAAH/AyoBQAQAA0kBiAMAAf8DAAH/
AwAB/wMAAf8DSQGIBAADKgFAAwAB/wMAAf8DAAH/AwAB/wMAAf8MAANPAfMDAAH/Aw8BFAgAA1YB8QMA
- Af8DEgEZEAADEgEZAwAB/wMGAf4LAAEBAwAB/wMGAf4QAANYAfIDAAH/AwAB/wMAAf8DAAH/AwAB/wMA
- Af8DWgHpAx8BLAgAAx8BLANcAeoDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DWAHyLAADFAEcA1IBpgNh
+ Af8DEgEZEAADEgEZAwAB/wMGAf4LAAEBAwAB/wMGAf4QAANZAfIDAAH/AwAB/wMAAf8DAAH/AwAB/wMA
+ Af8DWgHpAx8BLAgAAx8BLANcAeoDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DWQHyLAADFAEcA1IBpgNh
AeYDYQHmA1IBpgMUARwzAAH/AwAB/wMAAf8DAAH/AwAB/wNVAbIEAAMEAQYDSQGHA2EB5gNhAeYDSQGH
AwQBBgQAA1UBsgMAAf8DAAH/AwAB/wMAAf8DAAH/DAADYAHrAwAB/wMKAQ4IAANWAfEDAAH/AxIBGRAA
- AxIBGQMAAf8DXwHgCAADDQERAwAB/wNgAesQAANYAfIDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DXAHq
- Ax8BLAgAAx8BLANaAekDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DWAHyKAADFAEcA10B7QMAAf8DAAH/
+ AxIBGQMAAf8DXwHgCAADDQERAwAB/wNgAesQAANZAfIDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DXAHq
+ Ax8BLAgAAx8BLANaAekDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DWQHyKAADFAEcA10B7QMAAf8DAAH/
AwAB/wMAAf8DXQHtAxQBHC8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNEAXoYAANEAXoDAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8MAANeAdoDAAH/AyQBNggAA1YBvAMAAf8DQgF2EAADQgF2AwAB/wNVAa0IAAMm
ATgDAAH/A1sB0BAAA1sB2AMAAf8DAAH/AwAB/wMAAf8DAAH/A1wB6gMfAS0EAAMfASwDHwEsBAADHwEs
A1oB6QMAAf8DAAH/AwAB/wMAAf8DAAH/A1sB2CgAA1IBpgMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNS
AaYsAAMZASMDFAEcA1cBtwMAAf8DAAH/AwAB/wMAAf8DVgGzAyoBQAMJAQwDCQEMAyoBQANWAbMDAAH/
- AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/DAADUAGeAwAB/wNCAXUIAAMvAUoDAAH/AzgB+QNDAXcDEgEY
- AxIBGANDAXcDOAH5Ax0B/QMiATIIAANGAX8DAAH/A0wBkhAAA1EBpQMAAf8DAAH/AwAB/wMAAf8DYAHr
+ AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/DAADUAGeAwAB/wNCAXUIAAMvAUoDAAH/A0EB+QNDAXcDEgEY
+ AxIBGANDAXcDQQH5AyoB/QMiATIIAANGAX8DAAH/A0wBkhAAA1EBpQMAAf8DAAH/AwAB/wMAAf8DYAHr
Ax8BLQQAAx4BKwNaAekDWgHpAx8BLAQAAx8BLANcAeoDAAH/AwAB/wMAAf8DAAH/A1EBpSgAA14B5QMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wNeAeUsAANZAcQDWQHEAxUBHQMAAf8DAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/DAADNQFWAwAB/wNf
- AeADAwEECAADRwGCAwAB/wMAAf8DAAH/AwAB/wMAAf8DHQH9A0ABbwgAAwUBBwNdAeMDAAH/AysBQhAA
+ AeADAwEECAADRwGCAwAB/wMAAf8DAAH/AwAB/wMAAf8DKgH9A0ABbwgAAwUBBwNdAeMDAAH/AysBQhAA
AzUBVQMAAf8DAAH/AwAB/wMAAf8DSAGFBAADHgErA1oB6QMAAf8DAAH/A1oB6QMfASwEAANHAYMDAAH/
AwAB/wMAAf8DAAH/AzUBVSgAA14B5QMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNeAeUvAAH/AwAB/wcA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
- Af8DXQHiDAADAgEDA1sB2QMAAf8DRgF+DAADLwFJA1gBuwNPAfMDRwH3A1QBrAMrAUIMAANHAYIDAAH/
+ Af8DXQHiDAADAgEDA1sB2QMAAf8DRgF+DAADLwFJA1gBuwNPAfMDUQH3A1QBrAMrAUIMAANHAYIDAAH/
A1wByRQAAwQBBgNcAdwDAAH/AwAB/wMAAf8DXAHfA0cBgwNaAekDAAH/AwAB/wMAAf8DAAH/A1wB6gNH
AYMDWwHeAwAB/wMAAf8DAAH/A1wB3AMEAQYoAANSAaYDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DUgGm
LwAB/wMAAf8IAAMUARwDVwG3AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
- Af8DAAH/A10B4wMuAUgQAAMyAVADBgH+Ax0B/QMyAVEoAAMzAVMDHQH8AyEB+wMnAToYAAMzAVIDAAH/
+ Af8DAAH/A10B4wMuAUgQAAMyAVADBgH+AyoB/QMyAVEoAAMzAVMDKgH8AyEB+wMnAToYAAMzAVIDAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
AzMBUiwAAxQBHANdAe0DAAH/AwAB/wMAAf8DAAH/A10B7QMUARwgAANZAcQDAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DWQHEAxUBHQMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DBgH+AzkBXygAA0kBhwMA
- Af8DHQH9A0YBfgMDAQQYAAMDAQQDQgF2Ax0B/AMAAf8DQgF1IAADSgGLAwAB/wMAAf8DAAH/AwAB/wMA
+ Af8DKgH9A0YBfgMDAQQYAAMDAQQDQgF2AyoB/AMAAf8DQgF1IAADSgGLAwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DSgGLNAADFAEcA1IBpgNhAeYDYQHm
A1IBpgMUARwkAANZAcQDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DWQHEAxkBIwMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wNcAeoDOwFjLAADAQECA0kBhwMAAf8DAAH/A2AB4QNCAXUDJAE1AwsBDwMRARcDJAE1
A0EBcwNdAdcDAAH/AwAB/wNDAXckAAMBAQIDSgGLAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/A0oBiwMBAQJ/AAH/AwAB/2QAAzIBUANbAdkDAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DAAH/AwAB/wNfAdsDKwFCMAADMwFSA1wB3AMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
- Af8DAAH/A1wB3AMzAVKHAAH/AwAB/2gAAwIBAwM1AVYDUAGeA1sB2ANdAeMDHQH8A1oB0wNSAaYDMQFO
+ Af8DAAH/A1wB3AMzAVKHAAH/AwAB/2gAAwIBAwM1AVYDUAGeA1sB2ANdAeMDKgH8A1oB0wNSAaYDMQFO
AwMBBDgAAwQBBQM1AVYDUAGkA18B2wNPAfMDTwHzA18B2wNQAaQDNQFWAwQBBYgAA1kBxANZAcT/AP8A
/wD/AP8A/wB+AANLAY8DSwGPxAADSgGKA0oBilgAAwoBDQM5AV8DTgGVA1kBvwNfAegDXwHbAywBRDQA
- AxcBIAMAAf8DXAHfwAADSAGECP8DSAGETAADJwE7A1QBqwNHAfcDAAH/AwAB/wMAAf8DAAH/AwAB/wNe
+ AxcBIAMAAf8DXAHfwAADSAGECP8DSAGETAADJwE7A1QBqwNRAfcDAAH/AwAB/wMAAf8DAAH/AwAB/wNe
Ad00AAMXASADAAH/A1wB3zQAAy4BSANdAeMDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A10B4wMuAUg4AANAAW8Q/wNAAW9AAAMWAR4DUgGm
- AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DHQH8NAADFwEgAwAB/wNcAd80AANdAeIDAAH/
+ AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DKgH8NAADFwEgAwAB/wNcAd80AANdAeIDAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DXQHiNAADHgErGP8DIAEuOAADMQRPAfMDAAH/A1gB8gNcAdwDAAH/AwAB/wMAAf8DAAH/
+ AwAB/wMAAf8DXQHiNAADHgErGP8DIAEuOAADMQRPAfMDAAH/A1kB8gNcAdwDAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DIQH7NAADFwEgAwAB/wNcAd83AAH/AwAB/wMnATs4AAMnATsDAAH/AwAB/0AACP9AAAND
- AXgDHQH9AwAB/wNUAasDFAEbAxABFQNaAdMDAAH/AwAB/wMAAf8DAAH/AwAB/wNbAcs0AAMXASADAAH/
- A1wB3zcAAf8DAAH/QwAB/wMAAf9AAAj/PAADQwF3AwAB/wMdAfwDQAFxDAADEAEVA1gBuwMAAf8DWAHv
- A10B0gNRAaUDGQEjNAADFwEgAwAB/wNcAd80AAMGAf4DAAH/QwAB/wMAAf9AAAj/OAADMgFQAx0B/QMd
+ AXgDKgH9AwAB/wNUAasDFAEbAxABFQNaAdMDAAH/AwAB/wMAAf8DAAH/AwAB/wNbAcs0AAMXASADAAH/
+ A1wB3zcAAf8DAAH/QwAB/wMAAf9AAAj/PAADQwF3AwAB/wMqAfwDQAFxDAADEAEVA1gBuwMAAf8DWAHv
+ A10B0gNRAaUDGQEjNAADFwEgAwAB/wNcAd80AAMGAf4DAAH/QwAB/wMAAf9AAAj/OAADMgFQAyoB/QMq
AfwDNQFVYAADFwEgAwAB/wNcAd80AAMGAf4DAAH/QwAB/wMAAf8oAANdAdIDXQHSEAAI/zQAAxYBHwNP
AfMDAAH/A0ABcVAAA0sBjwMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
AwAB/wNLAY8cAAMGAf4DAAH/QwAB/wMAAf8oAAj/EAAI/zQAA1IBpwMAAf8DVAGrVAADVgGzAwAB/wMA
Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A04BlxwAAwYB/gMAAf8YAAMV
- AR0DRgGAA0YBgAMVAR0bAAH/AwAB/ygACP8QAAj/MAADJwE7AwYB/gNYAfIDFAEbVAADBgEIA0oBiwMh
- AfsDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNHAfcDQQFzAwMBBBwAAwYB/gMAAf8QAAMC
- AQMDQAFwA1gB8gMAAf8DAAH/A1gB8gNAAXADAgEDEwAB/wMAAf8oAAj/EAADYAHUA14B1TAAA1QBqwMA
- Af8DXwHbAxABFVwAA0sBjwMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A0ABbyQAAx0B/QMA
+ AR0DRgGAA0YBgAMVAR0bAAH/AwAB/ygACP8QAAj/MAADJwE7AwYB/gNZAfIDFAEbVAADBgEIA0oBiwMh
+ AfsDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNRAfcDQQFzAwMBBBwAAwYB/gMAAf8QAAMC
+ AQMDQAFwA1kB8gMAAf8DAAH/A1kB8gNAAXADAgEDEwAB/wMAAf8oAAj/EAADYAHUA14B1TAAA1QBqwMA
+ Af8DXwHbAxABFVwAA0sBjwMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A0ABbyQAAyoB/QMA
Af8MAAMjATMDXAHMAwAB/wNdAeIDMQFPAzEBTwNdAeIDAAH/A1wBzAMjATMPAAH/AwAB/ygACP9EAAMK
- AQ4DRwH3AwAB/wMAAf8DWgHTAxABFVgAAyYBOAMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
- AxQBHCQAAx0B/QMAAf8EAAMKAQ0DSwGPAx0B/AMdAfwDSwGPAwoBDQgAAwoBDQNLAY8DHQH8Ax0B/ANL
+ AQ4DUQH3AwAB/wMAAf8DWgHTAxABFVgAAyYBOAMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
+ AxQBHCQAAyoB/QMAAf8EAAMKAQ0DSwGPAyoB/AMqAfwDSwGPAwoBDQgAAwoBDQNLAY8DKgH8AyoB/ANL
AY8DCgENBwAB/wMAAf8oAAj/RAADOQFfAwAB/wMAAf8DAAH/AwAB/wNWAbxfAAH/AwAB/wMAAf8DAAH/
- AwAB/wMAAf8DAAH/AwAB/ygAAx0B/QMAAf8DMQFPA10B4gMAAf8DXAHMAyMBMxgAAyMBMwNcAcwDAAH/
- A10B4gMxAU8DAAH/AwAB/ygACP9EAANOAZcDAAH/AwAB/wMAAf8DAAH/Ax0B/QMCAQNbAAH/AwAB/wMA
- Af8DAAH/AwAB/wMAAf8DAAH/AwAB/ygAAx0B/QMAAf8DAAH/A1gB8gNAAW8DAgEDIAADAgEDA0ABbwNY
- AfIDAAH/AwAB/wMAAf8cAAMfASwU/wN/Af4DHwEsOAADWQG/AwAB/wMAAf8DAAH/AwAB/wNYAfJfAAH/
- AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/ygAAx0B/QMAAf8DVAGvAxUBHTAAAxUBHQNUAa8DAAH/
+ AwAB/wMAAf8DAAH/AwAB/ygAAyoB/QMAAf8DMQFPA10B4gMAAf8DXAHMAyMBMxgAAyMBMwNcAcwDAAH/
+ A10B4gMxAU8DAAH/AwAB/ygACP9EAANOAZcDAAH/AwAB/wMAAf8DAAH/AyoB/QMCAQNbAAH/AwAB/wMA
+ Af8DAAH/AwAB/wMAAf8DAAH/AwAB/ygAAyoB/QMAAf8DAAH/A1kB8gNAAW8DAgEDIAADAgEDA0ABbwNZ
+ AfIDAAH/AwAB/wMAAf8cAAMfASwU/wN/Af4DHwEsOAADWQG/AwAB/wMAAf8DAAH/AwAB/wNZAfJfAAH/
+ AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/ygAAyoB/QMAAf8DVAGvAxUBHTAAAxUBHQNUAa8DAAH/
AwAB/yAAA0ABbxD/Az0BaDwAA2EB5gMAAf8DAAH/AwAB/wMAAf8DXAHUXwAB/wMAAf8DAAH/AwAB/wMA
Af8DAAH/AwAB/wMAAf8oAANcAd8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/
AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DXQHiJAADSAGECP8DRwGBQAADXAHcAwAB/wMA