File: TreeViewTest.Designer.cs
Web Access
Project: src\src\System.Windows.Forms\tests\IntegrationTests\WinformsControlsTest\WinformsControlsTest.csproj (WinFormsControlsTest)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace WinFormsControlsTest;
 
partial class TreeViewTest
{
    /// <summary>
    ///  Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;
 
    /// <summary>
    ///  Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }
 
    #region Windows Form Designer generated code
 
    /// <summary>
    ///  Required method for Designer support - do not modify
    ///  the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        this.components = new System.ComponentModel.Container();
        System.ComponentModel.ComponentResourceManager resources = new(typeof(TreeViewTest));
        this.treeView1 = new System.Windows.Forms.TreeView();
        this.imageList1 = new System.Windows.Forms.ImageList(this.components);
        this.SuspendLayout();
        // 
        // treeView1
        // 
        this.treeView1.CheckBoxes = true;
        resources.ApplyResources(this.treeView1, "treeView1");
        this.treeView1.ImageList = this.imageList1;
        this.treeView1.Name = "treeView1";
        this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
        (System.Windows.Forms.TreeNode)(resources.GetObject("treeView1.Nodes")),
        (System.Windows.Forms.TreeNode)(resources.GetObject("treeView1.Nodes1")),
        (System.Windows.Forms.TreeNode)(resources.GetObject("treeView1.Nodes2"))});
        this.treeView1.ShowNodeToolTips = true;
        // 
        // imageList1
        // 
        this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
        this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
        this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
        this.imageList1.Images.SetKeyName(0, "SmallA.bmp");
        this.imageList1.Images.SetKeyName(1, "SmallABlue.bmp");
        // 
        // TreeViewTest
        // 
        resources.ApplyResources(this, "$this");
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
        this.BackColor = System.Drawing.Color.FromArgb((int)(byte)0, (int)(byte)192, (int)(byte)0);
        this.Controls.Add(this.treeView1);
        this.Name = "TreeViewTest";
        this.ResumeLayout(false);
 
    }
 
    #endregion
 
    private System.Windows.Forms.TreeView treeView1;
    private System.Windows.Forms.ImageList imageList1;
}