71 lines
2.6 KiB
C#
71 lines
2.6 KiB
C#
namespace Database2
|
|
{
|
|
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()
|
|
{
|
|
this.cboTest = new System.Windows.Forms.ComboBox();
|
|
this.dgvStudents = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// cboTest
|
|
//
|
|
this.cboTest.FormattingEnabled = true;
|
|
this.cboTest.Location = new System.Drawing.Point(184, 120);
|
|
this.cboTest.Name = "cboTest";
|
|
this.cboTest.Size = new System.Drawing.Size(121, 21);
|
|
this.cboTest.TabIndex = 0;
|
|
//
|
|
// dgvStudents
|
|
//
|
|
this.dgvStudents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvStudents.Location = new System.Drawing.Point(306, 287);
|
|
this.dgvStudents.Name = "dgvStudents";
|
|
this.dgvStudents.Size = new System.Drawing.Size(240, 150);
|
|
this.dgvStudents.TabIndex = 1;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.dgvStudents);
|
|
this.Controls.Add(this.cboTest);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
private System.Windows.Forms.ComboBox cboTest;
|
|
private System.Windows.Forms.DataGridView dgvStudents;
|
|
|
|
#endregion
|
|
}
|
|
} |