DarkUI.Net5/DarkUI/Forms/DarkMessageBox.Designer.cs
Robin 27a5ad0c6e DarkDialog & DarkMessageBox
Added a dynamic dialog window and message box.
2015-09-18 11:40:14 +01:00

81 lines
3.2 KiB
C#

namespace DarkUI
{
partial class DarkMessageBox
{
/// <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.picIcon = new System.Windows.Forms.PictureBox();
this.lblText = new DarkUI.DarkLabel();
((System.ComponentModel.ISupportInitialize)(this.picIcon)).BeginInit();
this.SuspendLayout();
//
// picIcon
//
this.picIcon.Location = new System.Drawing.Point(10, 10);
this.picIcon.Name = "picIcon";
this.picIcon.Size = new System.Drawing.Size(32, 32);
this.picIcon.TabIndex = 3;
this.picIcon.TabStop = false;
//
// lblText
//
this.lblText.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
this.lblText.Location = new System.Drawing.Point(50, 9);
this.lblText.Name = "lblText";
this.lblText.Size = new System.Drawing.Size(185, 15);
this.lblText.TabIndex = 4;
this.lblText.Text = "Something something something";
//
// DarkMessageBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(244, 86);
this.Controls.Add(this.lblText);
this.Controls.Add(this.picIcon);
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "DarkMessageBox";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Message box";
this.Controls.SetChildIndex(this.picIcon, 0);
this.Controls.SetChildIndex(this.lblText, 0);
((System.ComponentModel.ISupportInitialize)(this.picIcon)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox picIcon;
private DarkLabel lblText;
}
}