Opc.Ua.Configuration.NewEndpointDlg.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.ButtonsPN = new System.Windows.Forms.Panel();
            this.DiscoverBTN = new System.Windows.Forms.Button();
            this.OkBTN = new System.Windows.Forms.Button();
            this.CancelBTN = new System.Windows.Forms.Button();
            this.MainPN = new System.Windows.Forms.Panel();
            this.EndpointBTN = new System.Windows.Forms.Button();
            this.EndpointTB = new System.Windows.Forms.TextBox();
            this.EndpointLB = new System.Windows.Forms.Label();
            this.ButtonsPN.SuspendLayout();
            this.MainPN.SuspendLayout();
            this.SuspendLayout();
            // 
            // ButtonsPN
            // 
            this.ButtonsPN.Controls.Add(this.DiscoverBTN);
            this.ButtonsPN.Controls.Add(this.OkBTN);
            this.ButtonsPN.Controls.Add(this.CancelBTN);
            this.ButtonsPN.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.ButtonsPN.Location = new System.Drawing.Point(0, 37);
            this.ButtonsPN.Name = "ButtonsPN";
            this.ButtonsPN.Size = new System.Drawing.Size(595, 31);
            this.ButtonsPN.TabIndex = 0;
            // 
            // DiscoverBTN
            // 
            this.DiscoverBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.DiscoverBTN.Location = new System.Drawing.Point(260, 4);
            this.DiscoverBTN.Name = "DiscoverBTN";
            this.DiscoverBTN.Size = new System.Drawing.Size(75, 23);
            this.DiscoverBTN.TabIndex = 7;
            this.DiscoverBTN.Text = "Discover...";
            this.DiscoverBTN.UseVisualStyleBackColor = true;
            this.DiscoverBTN.Click += new System.EventHandler(this.DiscoverBTN_Click);
            // 
            // OkBTN
            // 
            this.OkBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.OkBTN.Location = new System.Drawing.Point(4, 4);
            this.OkBTN.Name = "OkBTN";
            this.OkBTN.Size = new System.Drawing.Size(75, 23);
            this.OkBTN.TabIndex = 1;
            this.OkBTN.Text = "OK";
            this.OkBTN.UseVisualStyleBackColor = true;
            this.OkBTN.Click += new System.EventHandler(this.OkBTN_Click);
            // 
            // CancelBTN
            // 
            this.CancelBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.CancelBTN.Location = new System.Drawing.Point(516, 4);
            this.CancelBTN.Name = "CancelBTN";
            this.CancelBTN.Size = new System.Drawing.Size(75, 23);
            this.CancelBTN.TabIndex = 0;
            this.CancelBTN.Text = "Cancel";
            this.CancelBTN.UseVisualStyleBackColor = true;
            // 
            // MainPN
            // 
            this.MainPN.Controls.Add(this.EndpointBTN);
            this.MainPN.Controls.Add(this.EndpointTB);
            this.MainPN.Controls.Add(this.EndpointLB);
            this.MainPN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MainPN.Location = new System.Drawing.Point(0, 0);
            this.MainPN.Name = "MainPN";
            this.MainPN.Size = new System.Drawing.Size(595, 37);
            this.MainPN.TabIndex = 1;
            // 
            // EndpointBTN
            // 
            this.EndpointBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.EndpointBTN.Location = new System.Drawing.Point(566, 8);
            this.EndpointBTN.Name = "EndpointBTN";
            this.EndpointBTN.Size = new System.Drawing.Size(25, 22);
            this.EndpointBTN.TabIndex = 6;
            this.EndpointBTN.Text = "...";
            this.EndpointBTN.UseVisualStyleBackColor = true;
            this.EndpointBTN.Click += new System.EventHandler(this.EditBTN_Click);
            // 
            // EndpointTB
            // 
            this.EndpointTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.EndpointTB.Location = new System.Drawing.Point(101, 9);
            this.EndpointTB.Name = "EndpointTB";
            this.EndpointTB.Size = new System.Drawing.Size(459, 20);
            this.EndpointTB.TabIndex = 5;
            // 
            // EndpointLB
            // 
            this.EndpointLB.AutoSize = true;
            this.EndpointLB.Location = new System.Drawing.Point(3, 12);
            this.EndpointLB.Name = "EndpointLB";
            this.EndpointLB.Size = new System.Drawing.Size(74, 13);
            this.EndpointLB.TabIndex = 4;
            this.EndpointLB.Text = "Endpoint URL";
            this.EndpointLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // NewEndpointDlg
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(595, 68);
            this.Controls.Add(this.MainPN);
            this.Controls.Add(this.ButtonsPN);
            this.MaximumSize = new System.Drawing.Size(1024, 2000);
            this.MinimumSize = new System.Drawing.Size(450, 103);
            this.Name = "NewEndpointDlg";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Specify Endpoint for a UA Server";
            this.ButtonsPN.ResumeLayout(false);
            this.MainPN.ResumeLayout(false);
            this.MainPN.PerformLayout();
            this.ResumeLayout(false);

        }