Brh.Forms.PopupNotify.InitializeComponent C# (CSharp) Метод

InitializeComponent() приватный Метод

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
Результат void
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.closeButton = new System.Windows.Forms.PictureBox();
            this.iconBox = new System.Windows.Forms.PictureBox();
            this.NotifyTitle = new System.Windows.Forms.Label();
            this.NotifyMessage = new System.Windows.Forms.Label();
            this.displayTimer = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.closeButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconBox)).BeginInit();
            this.SuspendLayout();
            //
            // closeButton
            //
            this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.closeButton.BackColor = System.Drawing.Color.Transparent;
            this.closeButton.Location = new System.Drawing.Point(280, 8);
            this.closeButton.Name = "closeButton";
            this.closeButton.Size = new System.Drawing.Size(16, 16);
            this.closeButton.TabIndex = 0;
            this.closeButton.TabStop = false;
            this.closeButton.MouseLeave += new System.EventHandler(this.closeButton_MouseLeave);
            this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
            this.closeButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.closeButton_MouseDown);
            this.closeButton.MouseEnter += new System.EventHandler(this.closeButton_MouseEnter);
            //
            // iconBox
            //
            this.iconBox.BackColor = System.Drawing.Color.Transparent;
            this.iconBox.Location = new System.Drawing.Point(8, 8);
            this.iconBox.Name = "iconBox";
            this.iconBox.Size = new System.Drawing.Size(50, 50);
            this.iconBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.iconBox.TabIndex = 1;
            this.iconBox.TabStop = false;
            //
            // NotifyTitle
            //
            this.NotifyTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.NotifyTitle.AutoEllipsis = true;
            this.NotifyTitle.AutoSize = true;
            this.NotifyTitle.BackColor = System.Drawing.Color.Transparent;
            this.NotifyTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(68)))), ((int)(((byte)(135)))));
            this.NotifyTitle.Location = new System.Drawing.Point(72, 8);
            this.NotifyTitle.Name = "NotifyTitle";
            this.NotifyTitle.Size = new System.Drawing.Size(23, 13);
            this.NotifyTitle.TabIndex = 2;
            this.NotifyTitle.Text = "title";
            //
            // NotifyMessage
            //
            this.NotifyMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.NotifyMessage.BackColor = System.Drawing.Color.Transparent;
            this.NotifyMessage.Location = new System.Drawing.Point(72, 40);
            this.NotifyMessage.Name = "NotifyMessage";
            this.NotifyMessage.Size = new System.Drawing.Size(224, 10);
            this.NotifyMessage.TabIndex = 3;
            //
            // displayTimer
            //
            this.displayTimer.Tick += new System.EventHandler(this.displayTimer_Tick);
            //
            // PopupNotify
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(304, 66);
            this.ControlBox = false;
            this.Controls.Add(this.NotifyMessage);
            this.Controls.Add(this.NotifyTitle);
            this.Controls.Add(this.iconBox);
            this.Controls.Add(this.closeButton);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "PopupNotify";
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
            this.Text = "PopupNotify";
            this.TopMost = true;
            this.Closing += new System.ComponentModel.CancelEventHandler(this.PopupNotify_Closing);
            this.Load += new System.EventHandler(this.PopupNotify_Load);
            ((System.ComponentModel.ISupportInitialize)(this.closeButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconBox)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }