using DarkUI.Controls; namespace DarkUI.Forms { partial class DarkMessageBox { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.picIcon = new System.Windows.Forms.PictureBox(); this.lblText = new 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; } }