private void InitializeComponent()

in src/XmlNotepad/XmlTreeView.cs [1496:1606]


        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XmlTreeView));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
            this.hScrollBar1 = new System.Windows.Forms.HScrollBar();
            this.resizer = new XmlNotepad.PaneResizer();
            this._myTreeView = new XmlNotepad.TreeView();
            this._nodeTextView = new XmlNotepad.NodeTextView();
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "Element.png");
            this.imageList1.Images.SetKeyName(1, "RedBall.png");
            this.imageList1.Images.SetKeyName(2, "BlueBall.png");
            this.imageList1.Images.SetKeyName(3, "Text.png");
            this.imageList1.Images.SetKeyName(4, "GreenBall.png");
            this.imageList1.Images.SetKeyName(5, "PurpleBall.png");
            this.imageList1.Images.SetKeyName(6, "Open.png");
            this.imageList1.Images.SetKeyName(7, "cdata.png");
            // 
            // vScrollBar1
            // 
            this.vScrollBar1.AccessibleName = "VScrollBar";
            this.vScrollBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vScrollBar1.Location = new System.Drawing.Point(477, 0);
            this.vScrollBar1.Name = "vScrollBar1";
            this.vScrollBar1.Size = new System.Drawing.Size(20, 224);
            this.vScrollBar1.TabIndex = 0;
            this.vScrollBar1.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar1_Scroll);
            // 
            // hScrollBar1
            // 
            this.hScrollBar1.AccessibleName = "HScrollBar";
            this.hScrollBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.hScrollBar1.Location = new System.Drawing.Point(0, 204);
            this.hScrollBar1.Name = "hScrollBar1";
            this.hScrollBar1.Size = new System.Drawing.Size(179, 20);
            this.hScrollBar1.TabIndex = 2;
            this.hScrollBar1.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar1_Scroll);
            // 
            // resizer
            // 
            this.resizer.AccessibleName = "XmlTreeResizer";
            this.resizer.Border3DStyle = System.Windows.Forms.Border3DStyle.Raised;
            this.resizer.Location = new System.Drawing.Point(200, 0);
            this.resizer.Name = "resizer";
            this.resizer.Pane1 = this._myTreeView;
            this.resizer.Pane2 = this._nodeTextView;
            this.resizer.PaneWidth = 5;
            this.resizer.Size = new System.Drawing.Size(5, 408);
            this.resizer.TabIndex = 3;
            this.resizer.Vertical = true;
            // 
            // myTreeView
            // 
            this._myTreeView.AccessibleName = "TreeView";
            this._myTreeView.AccessibleRole = System.Windows.Forms.AccessibleRole.List;
            this._myTreeView.ImageList = this.imageList1;
            this._myTreeView.LabelEdit = true;
            this._myTreeView.LineColor = System.Drawing.SystemColors.ControlDark;
            this._myTreeView.Location = new System.Drawing.Point(0, 0);
            this._myTreeView.MouseDownEditDelay = 400;
            this._myTreeView.Name = "myTreeView";
            this._myTreeView.Nodes = null;
            this._myTreeView.ScrollPosition = new System.Drawing.Point(0, 0);
            this._myTreeView.SelectedNode = null;
            this._myTreeView.Size = new System.Drawing.Size(216, 224);
            this._myTreeView.TabIndex = 1;
            this._myTreeView.TreeIndent = 30;
            this._myTreeView.VirtualHeight = 0;
            this._myTreeView.VirtualWidth = 0;
            // 
            // nodeTextView
            // 
            this._nodeTextView.AccessibleDescription = "Right hand side of the XmlTreeView for editing node values";
            this._nodeTextView.AccessibleName = "NodeTextView";
            this._nodeTextView.AccessibleRole = System.Windows.Forms.AccessibleRole.List;
            this._nodeTextView.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._nodeTextView.BackColor = System.Drawing.Color.White;
            this._nodeTextView.Location = new System.Drawing.Point(301, 0);
            this._nodeTextView.Name = "nodeTextView";
            this._nodeTextView.Nodes = null;
            this._nodeTextView.ScrollPosition = new System.Drawing.Point(0, 0);
            this._nodeTextView.SelectedNode = null;
            this._nodeTextView.Size = new System.Drawing.Size(179, 224);
            this._nodeTextView.TabIndex = 4;
            // 
            // XmlTreeView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.Controls.Add(this.vScrollBar1);
            this.Controls.Add(this.hScrollBar1);
            this.Controls.Add(this.resizer);
            this.Controls.Add(this._nodeTextView);
            this.Controls.Add(this._myTreeView);
            this.Name = "XmlTreeView";
            this.Size = new System.Drawing.Size(496, 224);
            this.ResumeLayout(false);

        }