PIbd-31_Danilov_V_V_COP-30/WinFormsTest/Form1.Designer.cs

78 lines
2.1 KiB
C#
Raw Normal View History

2024-09-20 08:45:39 +04:00
namespace WinFormsTest
{
partial class Form1
{
/// <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()
{
customListBox = new Components.CustomListBox();
2024-10-03 21:07:20 +04:00
customTextBox = new Components.CustomTextBox();
customDataGridView1 = new Components.CustomDataGridView();
2024-09-20 08:45:39 +04:00
SuspendLayout();
//
// customListBox
//
customListBox.Location = new Point(41, 40);
customListBox.Name = "customListBox";
customListBox.SelectedItem = "";
customListBox.Size = new Size(150, 150);
customListBox.TabIndex = 0;
//
2024-10-03 21:07:20 +04:00
// customTextBox
//
customTextBox.Location = new Point(250, 40);
customTextBox.Name = "customTextBox";
customTextBox.Size = new Size(150, 150);
customTextBox.TabIndex = 1;
//
// customDataGridView1
//
customDataGridView1.Location = new Point(470, 50);
customDataGridView1.Name = "customDataGridView1";
customDataGridView1.Size = new Size(449, 150);
customDataGridView1.TabIndex = 2;
//
2024-09-20 08:45:39 +04:00
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
2024-10-03 21:07:20 +04:00
ClientSize = new Size(1003, 257);
Controls.Add(customDataGridView1);
Controls.Add(customTextBox);
2024-09-20 08:45:39 +04:00
Controls.Add(customListBox);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
}
#endregion
private Components.CustomListBox customListBox;
2024-10-03 21:07:20 +04:00
private Components.CustomTextBox customTextBox;
private Components.CustomDataGridView customDataGridView1;
2024-09-20 08:45:39 +04:00
}
}