123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- namespace KotenkovStudents
- {
- partial class Form1
- {
- /// <summary>
- /// Обязательная переменная конструктора.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Освободить все используемые ресурсы.
- /// </summary>
- /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Код, автоматически созданный конструктором форм Windows
- /// <summary>
- /// Требуемый метод для поддержки конструктора — не изменяйте
- /// содержимое этого метода с помощью редактора кода.
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.SpecBt = new System.Windows.Forms.Button();
- this.PredmetBt = new System.Windows.Forms.Button();
- this.StudentsBt = new System.Windows.Forms.Button();
- this.GradeBt = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(344, 43);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(125, 13);
- this.label1.TabIndex = 0;
- this.label1.Text = "База данных \"Студент\"";
- //
- // SpecBt
- //
- this.SpecBt.Location = new System.Drawing.Point(322, 82);
- this.SpecBt.Name = "SpecBt";
- this.SpecBt.Size = new System.Drawing.Size(161, 43);
- this.SpecBt.TabIndex = 1;
- this.SpecBt.Text = "Таблица \"Специальности\"";
- this.SpecBt.UseVisualStyleBackColor = true;
- this.SpecBt.Click += new System.EventHandler(this.SpecBt_Click);
- //
- // PredmetBt
- //
- this.PredmetBt.Location = new System.Drawing.Point(322, 131);
- this.PredmetBt.Name = "PredmetBt";
- this.PredmetBt.Size = new System.Drawing.Size(161, 46);
- this.PredmetBt.TabIndex = 2;
- this.PredmetBt.Text = "Таблица \"Предметы\"";
- this.PredmetBt.UseVisualStyleBackColor = true;
- this.PredmetBt.Click += new System.EventHandler(this.PredmetBt_Click);
- //
- // StudentsBt
- //
- this.StudentsBt.Location = new System.Drawing.Point(322, 183);
- this.StudentsBt.Name = "StudentsBt";
- this.StudentsBt.Size = new System.Drawing.Size(161, 42);
- this.StudentsBt.TabIndex = 3;
- this.StudentsBt.Text = "Таблица \"Студенты\"";
- this.StudentsBt.UseVisualStyleBackColor = true;
- this.StudentsBt.Click += new System.EventHandler(this.StudentsBt_Click);
- //
- // GradeBt
- //
- this.GradeBt.Location = new System.Drawing.Point(322, 231);
- this.GradeBt.Name = "GradeBt";
- this.GradeBt.Size = new System.Drawing.Size(161, 45);
- this.GradeBt.TabIndex = 4;
- this.GradeBt.Text = "Таблица \"Оценки\"";
- this.GradeBt.UseVisualStyleBackColor = true;
- this.GradeBt.Click += new System.EventHandler(this.GradeBt_Click);
- //
- // 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.GradeBt);
- this.Controls.Add(this.StudentsBt);
- this.Controls.Add(this.PredmetBt);
- this.Controls.Add(this.SpecBt);
- this.Controls.Add(this.label1);
- this.Name = "Form1";
- this.Text = "Form1";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button SpecBt;
- private System.Windows.Forms.Button PredmetBt;
- private System.Windows.Forms.Button StudentsBt;
- private System.Windows.Forms.Button GradeBt;
- }
- }
|