mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-17 08:57:47 +01:00
85 lines
3.5 KiB
C#
85 lines
3.5 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.okBtn = 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;
|
|||
|
|
//
|
|||
|
|
// okBtn
|
|||
|
|
//
|
|||
|
|
this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.okBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|||
|
|
this.okBtn.FlatAppearance.BorderSize = 0;
|
|||
|
|
this.okBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|||
|
|
this.okBtn.ForeColor = System.Drawing.Color.White;
|
|||
|
|
this.okBtn.Location = new System.Drawing.Point(232, 126);
|
|||
|
|
this.okBtn.Name = "okBtn";
|
|||
|
|
this.okBtn.Size = new System.Drawing.Size(100, 23);
|
|||
|
|
this.okBtn.TabIndex = 46;
|
|||
|
|
this.okBtn.Text = "OK";
|
|||
|
|
this.okBtn.UseVisualStyleBackColor = false;
|
|||
|
|
this.okBtn.Click += new System.EventHandler(this.okBtn_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.okBtn);
|
|||
|
|
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.Load += new System.EventHandler(this.MessageForm_Load);
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Label textLabel;
|
|||
|
|
private HTAlt.WinForms.HTButton okBtn;
|
|||
|
|
}
|
|||
|
|
}
|