CNSA-212-Personal/Database2/Form1.Designer.cs

71 lines
2.6 KiB
C#
Raw Normal View History

2024-02-12 07:06:46 -08:00
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()
{
2024-02-12 07:08:12 -08:00
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);
2024-02-12 07:06:46 -08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
2024-02-12 07:08:12 -08:00
this.Controls.Add(this.dgvStudents);
this.Controls.Add(this.cboTest);
this.Name = "Form1";
2024-02-12 07:06:46 -08:00
this.Text = "Form1";
2024-02-12 07:08:12 -08:00
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
this.ResumeLayout(false);
2024-02-12 07:06:46 -08:00
}
2024-02-12 07:08:12 -08:00
private System.Windows.Forms.ComboBox cboTest;
private System.Windows.Forms.DataGridView dgvStudents;
2024-02-12 07:06:46 -08:00
#endregion
}
}