Opc.Ua.Configuration.UserNameListForm.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.components = new System.ComponentModel.Container();
            this.UserNameListView = new System.Windows.Forms.ListView();
            this.CloseButton = new System.Windows.Forms.Button();
            this.listContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.createUserCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.changePasswordPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.deleteDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.listContextMenuStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // UserNameListView
            // 
            this.UserNameListView.Location = new System.Drawing.Point(12, 12);
            this.UserNameListView.Name = "UserNameListView";
            this.UserNameListView.Size = new System.Drawing.Size(445, 238);
            this.UserNameListView.TabIndex = 0;
            this.UserNameListView.UseCompatibleStateImageBehavior = false;
            this.UserNameListView.View = System.Windows.Forms.View.List;
            this.UserNameListView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ListView_MouseClick);
            // 
            // CloseButton
            // 
            this.CloseButton.Location = new System.Drawing.Point(382, 256);
            this.CloseButton.Name = "CloseButton";
            this.CloseButton.Size = new System.Drawing.Size(75, 23);
            this.CloseButton.TabIndex = 1;
            this.CloseButton.Text = "Close";
            this.CloseButton.UseVisualStyleBackColor = true;
            this.CloseButton.Click += new System.EventHandler(this.CloseButton_Click);
            // 
            // listContextMenuStrip
            // 
            this.listContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.createUserCToolStripMenuItem,
            this.toolStripSeparator2,
            this.changePasswordPToolStripMenuItem,
            this.toolStripSeparator1,
            this.deleteDToolStripMenuItem});
            this.listContextMenuStrip.Name = "listContextMenuStrip";
            this.listContextMenuStrip.Size = new System.Drawing.Size(220, 82);
            // 
            // createUserCToolStripMenuItem
            // 
            this.createUserCToolStripMenuItem.Name = "createUserCToolStripMenuItem";
            this.createUserCToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            this.createUserCToolStripMenuItem.Text = "Create User(&C)";
            this.createUserCToolStripMenuItem.Click += new System.EventHandler(this.CreateUserMI_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(216, 6);
            // 
            // changePasswordPToolStripMenuItem
            // 
            this.changePasswordPToolStripMenuItem.Name = "changePasswordPToolStripMenuItem";
            this.changePasswordPToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            this.changePasswordPToolStripMenuItem.Text = "Change NewPassword(&P)";
            this.changePasswordPToolStripMenuItem.Click += new System.EventHandler(this.ChangePasswordMI_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(216, 6);
            // 
            // deleteDToolStripMenuItem
            // 
            this.deleteDToolStripMenuItem.Name = "deleteDToolStripMenuItem";
            this.deleteDToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            this.deleteDToolStripMenuItem.Text = "Delete User(&D)";
            this.deleteDToolStripMenuItem.Click += new System.EventHandler(this.DeleteMI_Click);
            // 
            // UserNameListForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(469, 284);
            this.Controls.Add(this.CloseButton);
            this.Controls.Add(this.UserNameListView);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "UserNameListForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "User List";
            this.Shown += new System.EventHandler(this.UserNameListForm_Shown);
            this.listContextMenuStrip.ResumeLayout(false);
            this.ResumeLayout(false);

        }