Form1.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. namespace KotenkovStudents
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Код, автоматически созданный конструктором форм Windows
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.SpecBt = new System.Windows.Forms.Button();
  30. this.PredmetBt = new System.Windows.Forms.Button();
  31. this.StudentsBt = new System.Windows.Forms.Button();
  32. this.GradeBt = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Location = new System.Drawing.Point(344, 43);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(125, 13);
  41. this.label1.TabIndex = 0;
  42. this.label1.Text = "База данных \"Студент\"";
  43. //
  44. // SpecBt
  45. //
  46. this.SpecBt.Location = new System.Drawing.Point(322, 82);
  47. this.SpecBt.Name = "SpecBt";
  48. this.SpecBt.Size = new System.Drawing.Size(161, 43);
  49. this.SpecBt.TabIndex = 1;
  50. this.SpecBt.Text = "Таблица \"Специальности\"";
  51. this.SpecBt.UseVisualStyleBackColor = true;
  52. this.SpecBt.Click += new System.EventHandler(this.SpecBt_Click);
  53. //
  54. // PredmetBt
  55. //
  56. this.PredmetBt.Location = new System.Drawing.Point(322, 131);
  57. this.PredmetBt.Name = "PredmetBt";
  58. this.PredmetBt.Size = new System.Drawing.Size(161, 46);
  59. this.PredmetBt.TabIndex = 2;
  60. this.PredmetBt.Text = "Таблица \"Предметы\"";
  61. this.PredmetBt.UseVisualStyleBackColor = true;
  62. this.PredmetBt.Click += new System.EventHandler(this.PredmetBt_Click);
  63. //
  64. // StudentsBt
  65. //
  66. this.StudentsBt.Location = new System.Drawing.Point(322, 183);
  67. this.StudentsBt.Name = "StudentsBt";
  68. this.StudentsBt.Size = new System.Drawing.Size(161, 42);
  69. this.StudentsBt.TabIndex = 3;
  70. this.StudentsBt.Text = "Таблица \"Студенты\"";
  71. this.StudentsBt.UseVisualStyleBackColor = true;
  72. this.StudentsBt.Click += new System.EventHandler(this.StudentsBt_Click);
  73. //
  74. // GradeBt
  75. //
  76. this.GradeBt.Location = new System.Drawing.Point(322, 231);
  77. this.GradeBt.Name = "GradeBt";
  78. this.GradeBt.Size = new System.Drawing.Size(161, 45);
  79. this.GradeBt.TabIndex = 4;
  80. this.GradeBt.Text = "Таблица \"Оценки\"";
  81. this.GradeBt.UseVisualStyleBackColor = true;
  82. this.GradeBt.Click += new System.EventHandler(this.GradeBt_Click);
  83. //
  84. // Form1
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.ClientSize = new System.Drawing.Size(800, 450);
  89. this.Controls.Add(this.GradeBt);
  90. this.Controls.Add(this.StudentsBt);
  91. this.Controls.Add(this.PredmetBt);
  92. this.Controls.Add(this.SpecBt);
  93. this.Controls.Add(this.label1);
  94. this.Name = "Form1";
  95. this.Text = "Form1";
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.Label label1;
  101. private System.Windows.Forms.Button SpecBt;
  102. private System.Windows.Forms.Button PredmetBt;
  103. private System.Windows.Forms.Button StudentsBt;
  104. private System.Windows.Forms.Button GradeBt;
  105. }
  106. }