Treefrog.Windows.PropertyPane.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("Predefined Properties", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("Custom Properties", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
            "",
            "Location",
            "50,50"}, -1);
            System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
            "",
            "Collision",
            "true"}, -1);
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertyPane));
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this._propertyList = new Treefrog.Windows.Controls.WinEx.EditableListView();
            this._colLabel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this._colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this._colValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this._buttonAddProp = new System.Windows.Forms.ToolStripButton();
            this._buttonRemoveProp = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            //
            // toolStripContainer1
            //
            //
            // toolStripContainer1.ContentPanel
            //
            this.toolStripContainer1.ContentPanel.Controls.Add(this._propertyList);
            this.toolStripContainer1.ContentPanel.Margin = new System.Windows.Forms.Padding(0);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(239, 264);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Margin = new System.Windows.Forms.Padding(0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(239, 289);
            this.toolStripContainer1.TabIndex = 0;
            this.toolStripContainer1.Text = "toolStripContainer1";
            //
            // toolStripContainer1.TopToolStripPanel
            //
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
            //
            // _propertyList
            //
            this._propertyList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this._colLabel,
            this._colName,
            this._colValue});
            this._propertyList.Dock = System.Windows.Forms.DockStyle.Fill;
            this._propertyList.DoubleClickActivation = true;
            this._propertyList.FullRowSelect = true;
            listViewGroup3.Header = "Special Properties";
            listViewGroup3.Name = "_groupPredef";
            listViewGroup4.Header = "Custom Properties";
            listViewGroup4.Name = "_groupCustom";
            this._propertyList.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
            listViewGroup3,
            listViewGroup4});
            this._propertyList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            listViewItem3.Group = listViewGroup3;
            listViewItem4.Group = listViewGroup4;
            this._propertyList.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            listViewItem3,
            listViewItem4});
            this._propertyList.Location = new System.Drawing.Point(0, 0);
            this._propertyList.Margin = new System.Windows.Forms.Padding(0);
            this._propertyList.MultiSelect = false;
            this._propertyList.Name = "_propertyList";
            this._propertyList.Size = new System.Drawing.Size(239, 264);
            this._propertyList.TabIndex = 0;
            this._propertyList.UseCompatibleStateImageBehavior = false;
            this._propertyList.View = System.Windows.Forms.View.Details;
            //
            // _colLabel
            //
            this._colLabel.Text = "";
            this._colLabel.Width = 0;
            //
            // _colName
            //
            this._colName.Text = "Name";
            this._colName.Width = 100;
            //
            // _colValue
            //
            this._colValue.Text = "Value";
            this._colValue.Width = 135;
            //
            // toolStrip1
            //
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._buttonAddProp,
            this._buttonRemoveProp,
            this.toolStripSeparator1,
            this.toolStripTextBox1});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(239, 25);
            this.toolStrip1.Stretch = true;
            this.toolStrip1.TabIndex = 0;
            //
            // _buttonAddProp
            //
            this._buttonAddProp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._buttonAddProp.Image = ((System.Drawing.Image)(resources.GetObject("_buttonAddProp.Image")));
            this._buttonAddProp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._buttonAddProp.Name = "_buttonAddProp";
            this._buttonAddProp.Size = new System.Drawing.Size(23, 22);
            this._buttonAddProp.Text = "Add Property";
            //
            // _buttonRemoveProp
            //
            this._buttonRemoveProp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._buttonRemoveProp.Image = ((System.Drawing.Image)(resources.GetObject("_buttonRemoveProp.Image")));
            this._buttonRemoveProp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._buttonRemoveProp.Name = "_buttonRemoveProp";
            this._buttonRemoveProp.Size = new System.Drawing.Size(23, 22);
            this._buttonRemoveProp.Text = "Delete Selected Property";
            //
            // toolStripSeparator1
            //
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            //
            // toolStripTextBox1
            //
            this.toolStripTextBox1.AutoSize = false;
            this.toolStripTextBox1.Name = "toolStripTextBox1";
            this.toolStripTextBox1.ReadOnly = true;
            this.toolStripTextBox1.Size = new System.Drawing.Size(150, 22);
            //
            // PropertyPane
            //
            this.Controls.Add(this.toolStripContainer1);
            this.Margin = new System.Windows.Forms.Padding(0);
            this.Name = "PropertyPane";
            this.Size = new System.Drawing.Size(239, 289);
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
        }