78 lines
2.1 KiB
C#
78 lines
2.1 KiB
C#
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();
|
|
customTextBox = new Components.CustomTextBox();
|
|
customDataGridView1 = new Components.CustomDataGridView();
|
|
SuspendLayout();
|
|
//
|
|
// customListBox
|
|
//
|
|
customListBox.Location = new Point(41, 40);
|
|
customListBox.Name = "customListBox";
|
|
customListBox.SelectedItem = "";
|
|
customListBox.Size = new Size(150, 150);
|
|
customListBox.TabIndex = 0;
|
|
//
|
|
// 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;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1003, 257);
|
|
Controls.Add(customDataGridView1);
|
|
Controls.Add(customTextBox);
|
|
Controls.Add(customListBox);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Components.CustomListBox customListBox;
|
|
private Components.CustomTextBox customTextBox;
|
|
private Components.CustomDataGridView customDataGridView1;
|
|
}
|
|
}
|