namespace StandardContainerControlsSample { partial class SplitContainerForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// protected override void Dispose(bool disposing) { if( disposing && (components != null) ) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("A Child Node"); System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Another Child Node"); System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Top Node", new System.Windows.Forms.TreeNode[] { treeNode1, treeNode2}); System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("First Item", 0); System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Second Item", 1); System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Third Item", 2); System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("Fourth Item", 3); System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("Fifth Item", 4); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SplitContainerForm)); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.treeView1 = new System.Windows.Forms.TreeView(); this.listView1 = new System.Windows.Forms.ListView(); this.listViewImageList = new System.Windows.Forms.ImageList(this.components); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.treeView1); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.listView1); this.splitContainer1.Size = new System.Drawing.Size(554, 301); this.splitContainer1.SplitterDistance = 247; this.splitContainer1.TabIndex = 0; this.splitContainer1.Text = "splitContainer1"; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView1.Location = new System.Drawing.Point(0, 0); this.treeView1.Name = "treeView1"; treeNode1.Name = "Node1"; treeNode1.Text = "A Child Node"; treeNode2.Name = "Node2"; treeNode2.Text = "Another Child Node"; treeNode3.Name = "Node0"; treeNode3.Text = "Top Node"; this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { treeNode3}); this.treeView1.Size = new System.Drawing.Size(247, 301); this.treeView1.TabIndex = 5; // // listView1 // this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] { listViewItem1, listViewItem2, listViewItem3, listViewItem4, listViewItem5}); this.listView1.LargeImageList = this.listViewImageList; this.listView1.Location = new System.Drawing.Point(0, 0); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(303, 301); this.listView1.SmallImageList = this.listViewImageList; this.listView1.TabIndex = 4; this.listView1.TileSize = new System.Drawing.Size(200, 200); // // listViewImageList // this.listViewImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("listViewImageList.ImageStream"))); this.listViewImageList.Images.SetKeyName(0, "FeatherTexture.bmp"); this.listViewImageList.Images.SetKeyName(1, "Greenstone.bmp"); this.listViewImageList.Images.SetKeyName(2, "Prairie Wind.bmp"); this.listViewImageList.Images.SetKeyName(3, "Rhododendron.bmp"); this.listViewImageList.Images.SetKeyName(4, "Soap Bubbles.bmp"); // // SplitContainerForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(554, 301); this.Controls.Add(this.splitContainer1); this.Name = "SplitContainerForm"; this.Text = "SplitContainer Form"; this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.TreeView treeView1; private System.Windows.Forms.ImageList listViewImageList; private System.Windows.Forms.ListView listView1; } }