File: Panels.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 Panels
{
    /// <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()
    {
        System.ComponentModel.ComponentResourceManager resources = new(typeof(Panels));
        this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
        this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
        this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
        this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
        this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
        this.currentDPILabel1 = new CurrentDPILabel();
        this.tableLayoutPanel1.SuspendLayout();
        this.tableLayoutPanel2.SuspendLayout();
        this.tableLayoutPanel3.SuspendLayout();
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
        this.SuspendLayout();
        // 
        // tableLayoutPanel1
        // 
        this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb((int)(byte)128, (int)(byte)255, (int)(byte)128);
        resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
        this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
        this.tableLayoutPanel1.Name = "tableLayoutPanel1";
        // 
        // tableLayoutPanel2
        // 
        this.tableLayoutPanel2.BackColor = System.Drawing.Color.FromArgb((int)(byte)255, (int)(byte)255, (int)(byte)128);
        resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
        this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 0, 0);
        this.tableLayoutPanel2.Controls.Add(this.currentDPILabel1, 0, 1);
        this.tableLayoutPanel2.Name = "tableLayoutPanel2";
        // 
        // tableLayoutPanel3
        // 
        this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb((int)(byte)128, (int)(byte)255, (int)(byte)255);
        resources.ApplyResources(this.tableLayoutPanel3, "tableLayoutPanel3");
        this.tableLayoutPanel3.Controls.Add(this.numericUpDown1, 1, 0);
        this.tableLayoutPanel3.Controls.Add(this.numericUpDown2, 1, 1);
        this.tableLayoutPanel3.Name = "tableLayoutPanel3";
        // 
        // numericUpDown1
        // 
        resources.ApplyResources(this.numericUpDown1, "numericUpDown1");
        this.numericUpDown1.Name = "numericUpDown1";
        // 
        // numericUpDown2
        // 
        resources.ApplyResources(this.numericUpDown2, "numericUpDown2");
        this.numericUpDown2.Name = "numericUpDown2";
        // 
        // currentDPILabel1
        // 
        resources.ApplyResources(this.currentDPILabel1, "currentDPILabel1");
        this.currentDPILabel1.BackColor = System.Drawing.Color.FromArgb((int)(byte)255, (int)(byte)128, (int)(byte)255);
        this.currentDPILabel1.Name = "currentDPILabel1";
        // 
        // Panels
        // 
        resources.ApplyResources(this, "$this");
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
        this.Controls.Add(this.tableLayoutPanel1);
        this.Name = "Panels";
        this.tableLayoutPanel1.ResumeLayout(false);
        this.tableLayoutPanel2.ResumeLayout(false);
        this.tableLayoutPanel2.PerformLayout();
        this.tableLayoutPanel3.ResumeLayout(false);
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
        this.ResumeLayout(false);
 
    }
    #endregion
 
    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
    private System.Windows.Forms.NumericUpDown numericUpDown1;
    private System.Windows.Forms.NumericUpDown numericUpDown2;
    private CurrentDPILabel currentDPILabel1;
}