Form1.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. namespace EJ
  2. {
  3. partial class Посещения
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Посещения));
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  32. this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  33. this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
  34. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  35. this.отметкаDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.датаDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.фамилиястудентаDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.посещаемостьBindingSource = new System.Windows.Forms.BindingSource(this.components);
  39. this.Save = new System.Windows.Forms.Button();
  40. this.panel1.SuspendLayout();
  41. this.toolStrip1.SuspendLayout();
  42. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  43. ((System.ComponentModel.ISupportInitialize)(this.посещаемостьBindingSource)).BeginInit();
  44. ((System.ComponentModel.ISupportInitialize)(this.eJDataSet)).BeginInit();
  45. this.SuspendLayout();
  46. //
  47. // panel1
  48. //
  49. this.panel1.BackColor = System.Drawing.Color.PowderBlue;
  50. this.panel1.Controls.Add(this.toolStrip1);
  51. this.panel1.Controls.Add(this.dataGridView1);
  52. this.panel1.Controls.Add(this.Save);
  53. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  54. this.panel1.Location = new System.Drawing.Point(0, 0);
  55. this.panel1.Name = "panel1";
  56. this.panel1.Size = new System.Drawing.Size(684, 359);
  57. this.panel1.TabIndex = 0;
  58. //
  59. // toolStrip1
  60. //
  61. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  62. this.toolStripButton1,
  63. this.toolStripButton2});
  64. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  65. this.toolStrip1.Name = "toolStrip1";
  66. this.toolStrip1.Size = new System.Drawing.Size(684, 25);
  67. this.toolStrip1.TabIndex = 3;
  68. this.toolStrip1.Text = "toolStrip1";
  69. //
  70. // toolStripButton1
  71. //
  72. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  73. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  74. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  75. this.toolStripButton1.Name = "toolStripButton1";
  76. this.toolStripButton1.Size = new System.Drawing.Size(82, 22);
  77. this.toolStripButton1.Text = "Спортсмены";
  78. this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
  79. //
  80. // toolStripButton2
  81. //
  82. this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  83. this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
  84. this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  85. this.toolStripButton2.Name = "toolStripButton2";
  86. this.toolStripButton2.Size = new System.Drawing.Size(76, 22);
  87. this.toolStripButton2.Text = "Расписание";
  88. this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
  89. //
  90. // dataGridView1
  91. //
  92. this.dataGridView1.AutoGenerateColumns = false;
  93. this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  94. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  95. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  96. this.отметкаDataGridViewTextBoxColumn,
  97. this.датаDataGridViewTextBoxColumn,
  98. this.фамилиястудентаDataGridViewTextBoxColumn});
  99. this.dataGridView1.DataSource = this.посещаемостьBindingSource;
  100. this.dataGridView1.Location = new System.Drawing.Point(120, 38);
  101. this.dataGridView1.Name = "dataGridView1";
  102. this.dataGridView1.Size = new System.Drawing.Size(532, 169);
  103. this.dataGridView1.TabIndex = 2;
  104. //
  105. // отметкаDataGridViewTextBoxColumn
  106. //
  107. this.отметкаDataGridViewTextBoxColumn.DataPropertyName = "Отметка";
  108. this.отметкаDataGridViewTextBoxColumn.HeaderText = "Отметка";
  109. this.отметкаDataGridViewTextBoxColumn.Name = "отметкаDataGridViewTextBoxColumn";
  110. //
  111. // датаDataGridViewTextBoxColumn
  112. //
  113. this.датаDataGridViewTextBoxColumn.DataPropertyName = "Дата";
  114. this.датаDataGridViewTextBoxColumn.HeaderText = "Дата";
  115. this.датаDataGridViewTextBoxColumn.Name = "датаDataGridViewTextBoxColumn";
  116. //
  117. // фамилиястудентаDataGridViewTextBoxColumn
  118. //
  119. this.фамилиястудентаDataGridViewTextBoxColumn.DataPropertyName = "Фамилия_студента";
  120. this.фамилиястудентаDataGridViewTextBoxColumn.HeaderText = "Фамилия студента";
  121. this.фамилиястудентаDataGridViewTextBoxColumn.Name = "фамилиястудентаDataGridViewTextBoxColumn";
  122. //
  123. // посещаемостьBindingSource
  124. //
  125. this.посещаемостьBindingSource.DataMember = "Посещаемость";
  126. this.посещаемостьBindingSource.DataSource = this.eJDataSet;
  127. //
  128. // eJDataSet
  129. //
  130. this.eJDataSet.DataSetName = "EJDataSet";
  131. this.eJDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  132. //
  133. // Save
  134. //
  135. this.Save.Location = new System.Drawing.Point(12, 319);
  136. this.Save.Name = "Save";
  137. this.Save.Size = new System.Drawing.Size(91, 30);
  138. this.Save.TabIndex = 1;
  139. this.Save.Text = "Сохранить";
  140. this.Save.UseVisualStyleBackColor = true;
  141. this.Save.Click += new System.EventHandler(this.Save_Click);
  142. //
  143. // посещаемостьTableAdapter
  144. //
  145. this.посещаемостьTableAdapter.ClearBeforeFill = true;
  146. //
  147. // Посещения
  148. //
  149. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  150. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  151. this.ClientSize = new System.Drawing.Size(684, 361);
  152. this.Controls.Add(this.panel1);
  153. this.Name = "Посещения";
  154. this.Text = "Журнал посещений";
  155. this.Load += new System.EventHandler(this.Посещения_Load);
  156. this.panel1.ResumeLayout(false);
  157. this.panel1.PerformLayout();
  158. this.toolStrip1.ResumeLayout(false);
  159. this.toolStrip1.PerformLayout();
  160. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  161. ((System.ComponentModel.ISupportInitialize)(this.посещаемостьBindingSource)).EndInit();
  162. ((System.ComponentModel.ISupportInitialize)(this.eJDataSet)).EndInit();
  163. this.ResumeLayout(false);
  164. }
  165. #endregion
  166. private System.Windows.Forms.Panel panel1;
  167. private System.Windows.Forms.Button Save;
  168. private System.Windows.Forms.DataGridView dataGridView1;
  169. private System.Windows.Forms.BindingSource посещаемостьBindingSource;
  170. private System.Windows.Forms.ToolStrip toolStrip1;
  171. private System.Windows.Forms.ToolStripButton toolStripButton1;
  172. private System.Windows.Forms.DataGridViewTextBoxColumn отметкаDataGridViewTextBoxColumn;
  173. private System.Windows.Forms.DataGridViewTextBoxColumn датаDataGridViewTextBoxColumn;
  174. private System.Windows.Forms.DataGridViewTextBoxColumn фамилиястудентаDataGridViewTextBoxColumn;
  175. private System.Windows.Forms.ToolStripButton toolStripButton2;
  176. }
  177. }