File: CollectionEditors.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.UserControls;
 
partial class CollectionEditors
{
    /// <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.comboBox1 = new System.Windows.Forms.ComboBox();
        this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
        this.textBox1 = new System.Windows.Forms.TextBox();
        this.listView1 = new System.Windows.Forms.ListView();
        this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
        this.label1 = new System.Windows.Forms.Label();
        this.domainUpDown1 = new System.Windows.Forms.DomainUpDown();
        this.SuspendLayout();
        // 
        // comboBox1
        // 
        this.comboBox1.FormattingEnabled = true;
        this.comboBox1.Location = new System.Drawing.Point(4, 64);
        this.comboBox1.Name = "comboBox1";
        this.comboBox1.Size = new System.Drawing.Size(121, 21);
        this.comboBox1.TabIndex = 2;
        this.comboBox1.Enter += this.control_Enter;
        // 
        // maskedTextBox1
        // 
        this.maskedTextBox1.Location = new System.Drawing.Point(4, 91);
        this.maskedTextBox1.Name = "maskedTextBox1";
        this.maskedTextBox1.Size = new System.Drawing.Size(121, 20);
        this.maskedTextBox1.TabIndex = 3;
        this.maskedTextBox1.Enter += this.control_Enter;
        // 
        // textBox1
        // 
        this.textBox1.Location = new System.Drawing.Point(4, 12);
        this.textBox1.Name = "textBox1";
        this.textBox1.Size = new System.Drawing.Size(121, 20);
        this.textBox1.TabIndex = 0;
        this.textBox1.Enter += this.control_Enter;
        // 
        // listView1
        // 
        this.listView1.HideSelection = false;
        this.listView1.Location = new System.Drawing.Point(4, 117);
        this.listView1.Name = "listView1";
        this.listView1.Size = new System.Drawing.Size(121, 97);
        this.listView1.TabIndex = 4;
        this.listView1.UseCompatibleStateImageBehavior = false;
        this.listView1.Enter += this.control_Enter;
        // 
        // propertyGrid1
        // 
        this.propertyGrid1.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.propertyGrid1.Location = new System.Drawing.Point(132, 37);
        this.propertyGrid1.Name = "propertyGrid1";
        this.propertyGrid1.Size = new System.Drawing.Size(357, 254);
        this.propertyGrid1.TabIndex = 6;
        // 
        // label1
        // 
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(132, 13);
        this.label1.Name = "label1";
        this.label1.Size = new System.Drawing.Size(35, 13);
        this.label1.TabIndex = 5;
        this.label1.Text = "label1";
        // 
        // domainUpDown1
        // 
        this.domainUpDown1.Location = new System.Drawing.Point(4, 38);
        this.domainUpDown1.Name = "domainUpDown1";
        this.domainUpDown1.Size = new System.Drawing.Size(120, 20);
        this.domainUpDown1.TabIndex = 1;
        this.domainUpDown1.Text = "domainUpDown1";
        this.domainUpDown1.Enter += this.control_Enter;
        // 
        // CollectionEditors
        // 
        this.ClientSize = new System.Drawing.Size(501, 303);
        this.Controls.Add(this.domainUpDown1);
        this.Controls.Add(this.label1);
        this.Controls.Add(this.propertyGrid1);
        this.Controls.Add(this.listView1);
        this.Controls.Add(this.textBox1);
        this.Controls.Add(this.maskedTextBox1);
        this.Controls.Add(this.comboBox1);
        this.Name = "CollectionEditors";
        this.ResumeLayout(false);
        this.PerformLayout();
 
    }
 
 
    #endregion
 
    private System.Windows.Forms.ComboBox comboBox1;
    private System.Windows.Forms.MaskedTextBox maskedTextBox1;
    private System.Windows.Forms.TextBox textBox1;
    private System.Windows.Forms.ListView listView1;
    private System.Windows.Forms.PropertyGrid propertyGrid1;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.DomainUpDown domainUpDown1;
}