mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
122 lines
5.6 KiB
C#
122 lines
5.6 KiB
C#
namespace Flowframes.Forms
|
|
{
|
|
partial class MessageForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.textLabel = new System.Windows.Forms.Label();
|
|
this.btn1 = new HTAlt.WinForms.HTButton();
|
|
this.btn2 = new HTAlt.WinForms.HTButton();
|
|
this.btn3 = new HTAlt.WinForms.HTButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// textLabel
|
|
//
|
|
this.textLabel.AutoSize = true;
|
|
this.textLabel.ForeColor = System.Drawing.Color.White;
|
|
this.textLabel.Location = new System.Drawing.Point(15, 15);
|
|
this.textLabel.Margin = new System.Windows.Forms.Padding(8, 0, 3, 0);
|
|
this.textLabel.Name = "textLabel";
|
|
this.textLabel.Size = new System.Drawing.Size(0, 13);
|
|
this.textLabel.TabIndex = 8;
|
|
//
|
|
// btn1
|
|
//
|
|
this.btn1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btn1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.btn1.FlatAppearance.BorderSize = 0;
|
|
this.btn1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btn1.ForeColor = System.Drawing.Color.White;
|
|
this.btn1.Location = new System.Drawing.Point(232, 126);
|
|
this.btn1.Name = "btn1";
|
|
this.btn1.Size = new System.Drawing.Size(100, 23);
|
|
this.btn1.TabIndex = 46;
|
|
this.btn1.Text = "OK";
|
|
this.btn1.UseVisualStyleBackColor = false;
|
|
this.btn1.Click += new System.EventHandler(this.btn1_Click);
|
|
//
|
|
// btn2
|
|
//
|
|
this.btn2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btn2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.btn2.FlatAppearance.BorderSize = 0;
|
|
this.btn2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btn2.ForeColor = System.Drawing.Color.White;
|
|
this.btn2.Location = new System.Drawing.Point(126, 126);
|
|
this.btn2.Name = "btn2";
|
|
this.btn2.Size = new System.Drawing.Size(100, 23);
|
|
this.btn2.TabIndex = 47;
|
|
this.btn2.Text = "OK";
|
|
this.btn2.UseVisualStyleBackColor = false;
|
|
this.btn2.Click += new System.EventHandler(this.btn2_Click);
|
|
//
|
|
// btn3
|
|
//
|
|
this.btn3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btn3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.btn3.FlatAppearance.BorderSize = 0;
|
|
this.btn3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btn3.ForeColor = System.Drawing.Color.White;
|
|
this.btn3.Location = new System.Drawing.Point(20, 126);
|
|
this.btn3.Name = "btn3";
|
|
this.btn3.Size = new System.Drawing.Size(100, 23);
|
|
this.btn3.TabIndex = 48;
|
|
this.btn3.Text = "OK";
|
|
this.btn3.UseVisualStyleBackColor = false;
|
|
this.btn3.Click += new System.EventHandler(this.btn3_Click);
|
|
//
|
|
// MessageForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
|
|
this.ClientSize = new System.Drawing.Size(344, 161);
|
|
this.Controls.Add(this.btn3);
|
|
this.Controls.Add(this.btn2);
|
|
this.Controls.Add(this.btn1);
|
|
this.Controls.Add(this.textLabel);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "MessageForm";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MessageForm_FormClosing);
|
|
this.Load += new System.EventHandler(this.MessageForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label textLabel;
|
|
private HTAlt.WinForms.HTButton btn1;
|
|
private HTAlt.WinForms.HTButton btn2;
|
|
private HTAlt.WinForms.HTButton btn3;
|
|
}
|
|
} |