GradeForm.Designer.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. namespace DeanOfficeApp
  2. {
  3. partial class GradeForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. components.Dispose();
  10. base.Dispose(disposing);
  11. }
  12. private void InitializeComponent()
  13. {
  14. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  15. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  16. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  17. this.panelHeader = new Guna.UI2.WinForms.Guna2Panel();
  18. this.lblTitle = new Guna.UI2.WinForms.Guna2HtmlLabel();
  19. this.panelContent = new Guna.UI2.WinForms.Guna2Panel();
  20. this.txtSearchStudent = new Guna.UI2.WinForms.Guna2TextBox();
  21. this.btnRefresh = new Guna.UI2.WinForms.Guna2Button();
  22. this.btnSave = new Guna.UI2.WinForms.Guna2Button();
  23. this.dtpExamDate = new Guna.UI2.WinForms.Guna2DateTimePicker();
  24. this.nudGrade = new Guna.UI2.WinForms.Guna2NumericUpDown();
  25. this.lblGrade = new Guna.UI2.WinForms.Guna2HtmlLabel();
  26. this.lblDate = new Guna.UI2.WinForms.Guna2HtmlLabel();
  27. this.dgvStudents = new Guna.UI2.WinForms.Guna2DataGridView();
  28. this.cmbSemester = new Guna.UI2.WinForms.Guna2ComboBox();
  29. this.cmbDiscipline = new Guna.UI2.WinForms.Guna2ComboBox();
  30. this.cmbGroup = new Guna.UI2.WinForms.Guna2ComboBox();
  31. this.lblSemester = new Guna.UI2.WinForms.Guna2HtmlLabel();
  32. this.lblDiscipline = new Guna.UI2.WinForms.Guna2HtmlLabel();
  33. this.lblGroup = new Guna.UI2.WinForms.Guna2HtmlLabel();
  34. this.panelHeader.SuspendLayout();
  35. this.panelContent.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.nudGrade)).BeginInit();
  37. ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).BeginInit();
  38. this.SuspendLayout();
  39. // panelHeader
  40. this.panelHeader.BackColor = System.Drawing.Color.FromArgb(52, 73, 94);
  41. this.panelHeader.Controls.Add(this.lblTitle);
  42. this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
  43. this.panelHeader.Location = new System.Drawing.Point(0, 0);
  44. this.panelHeader.Name = "panelHeader";
  45. this.panelHeader.Size = new System.Drawing.Size(900, 60);
  46. this.panelHeader.TabIndex = 0;
  47. // lblTitle
  48. this.lblTitle.BackColor = System.Drawing.Color.Transparent;
  49. this.lblTitle.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
  50. this.lblTitle.ForeColor = System.Drawing.Color.White;
  51. this.lblTitle.Location = new System.Drawing.Point(20, 15);
  52. this.lblTitle.Name = "lblTitle";
  53. this.lblTitle.Size = new System.Drawing.Size(283, 34);
  54. this.lblTitle.TabIndex = 0;
  55. this.lblTitle.Text = "Успеваемость / Оценки";
  56. // panelContent
  57. this.panelContent.BackColor = System.Drawing.Color.FromArgb(240, 242, 245);
  58. this.panelContent.Controls.Add(this.txtSearchStudent);
  59. this.panelContent.Controls.Add(this.btnRefresh);
  60. this.panelContent.Controls.Add(this.btnSave);
  61. this.panelContent.Controls.Add(this.dtpExamDate);
  62. this.panelContent.Controls.Add(this.nudGrade);
  63. this.panelContent.Controls.Add(this.lblGrade);
  64. this.panelContent.Controls.Add(this.lblDate);
  65. this.panelContent.Controls.Add(this.dgvStudents);
  66. this.panelContent.Controls.Add(this.cmbSemester);
  67. this.panelContent.Controls.Add(this.cmbDiscipline);
  68. this.panelContent.Controls.Add(this.cmbGroup);
  69. this.panelContent.Controls.Add(this.lblSemester);
  70. this.panelContent.Controls.Add(this.lblDiscipline);
  71. this.panelContent.Controls.Add(this.lblGroup);
  72. this.panelContent.Dock = System.Windows.Forms.DockStyle.Fill;
  73. this.panelContent.Location = new System.Drawing.Point(0, 60);
  74. this.panelContent.Name = "panelContent";
  75. this.panelContent.Size = new System.Drawing.Size(900, 540);
  76. this.panelContent.TabIndex = 1;
  77. // txtSearchStudent
  78. this.txtSearchStudent.Cursor = System.Windows.Forms.Cursors.IBeam;
  79. this.txtSearchStudent.DefaultText = "";
  80. this.txtSearchStudent.Font = new System.Drawing.Font("Segoe UI", 9F);
  81. this.txtSearchStudent.Location = new System.Drawing.Point(640, 480);
  82. this.txtSearchStudent.Name = "txtSearchStudent";
  83. this.txtSearchStudent.PlaceholderText = "🔍 Поиск по фамилии студента...";
  84. this.txtSearchStudent.Size = new System.Drawing.Size(240, 36);
  85. this.txtSearchStudent.TabIndex = 13;
  86. this.txtSearchStudent.TextChanged += new System.EventHandler(this.txtSearchStudent_TextChanged);
  87. // btnRefresh
  88. this.btnRefresh.BorderRadius = 10;
  89. this.btnRefresh.FillColor = System.Drawing.Color.FromArgb(52, 73, 94);
  90. this.btnRefresh.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  91. this.btnRefresh.ForeColor = System.Drawing.Color.White;
  92. this.btnRefresh.Location = new System.Drawing.Point(500, 480);
  93. this.btnRefresh.Name = "btnRefresh";
  94. this.btnRefresh.Size = new System.Drawing.Size(110, 40);
  95. this.btnRefresh.TabIndex = 12;
  96. this.btnRefresh.Text = "Обновить";
  97. this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
  98. // btnSave (без изменений)
  99. this.btnSave.BorderRadius = 10;
  100. this.btnSave.FillColor = System.Drawing.Color.FromArgb(40, 167, 69);
  101. this.btnSave.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  102. this.btnSave.ForeColor = System.Drawing.Color.White;
  103. this.btnSave.Location = new System.Drawing.Point(330, 480);
  104. this.btnSave.Name = "btnSave";
  105. this.btnSave.Size = new System.Drawing.Size(130, 40);
  106. this.btnSave.TabIndex = 11;
  107. this.btnSave.Text = "Сохранить";
  108. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  109. // dtpExamDate (без изменений)
  110. this.dtpExamDate.BorderRadius = 8;
  111. this.dtpExamDate.Checked = true;
  112. this.dtpExamDate.FillColor = System.Drawing.Color.White;
  113. this.dtpExamDate.Font = new System.Drawing.Font("Segoe UI", 9F);
  114. this.dtpExamDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  115. this.dtpExamDate.Location = new System.Drawing.Point(130, 485);
  116. this.dtpExamDate.MaxDate = new System.DateTime(2030, 12, 31, 0, 0, 0, 0);
  117. this.dtpExamDate.MinDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
  118. this.dtpExamDate.Name = "dtpExamDate";
  119. this.dtpExamDate.Size = new System.Drawing.Size(150, 36);
  120. this.dtpExamDate.TabIndex = 10;
  121. this.dtpExamDate.Value = new System.DateTime(2025, 6, 12, 0, 0, 0, 0);
  122. // nudGrade (без изменений)
  123. this.nudGrade.BackColor = System.Drawing.Color.Transparent;
  124. this.nudGrade.Cursor = System.Windows.Forms.Cursors.IBeam;
  125. this.nudGrade.Font = new System.Drawing.Font("Segoe UI", 10F);
  126. this.nudGrade.Location = new System.Drawing.Point(20, 485);
  127. this.nudGrade.Maximum = 5;
  128. this.nudGrade.Minimum = 2;
  129. this.nudGrade.Name = "nudGrade";
  130. this.nudGrade.Size = new System.Drawing.Size(80, 36);
  131. this.nudGrade.TabIndex = 8;
  132. this.nudGrade.Value = 2;
  133. // lblGrade
  134. this.lblGrade.BackColor = System.Drawing.Color.Transparent;
  135. this.lblGrade.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  136. this.lblGrade.Location = new System.Drawing.Point(20, 460);
  137. this.lblGrade.Name = "lblGrade";
  138. this.lblGrade.Size = new System.Drawing.Size(54, 19);
  139. this.lblGrade.TabIndex = 7;
  140. this.lblGrade.Text = "Оценка:";
  141. // lblDate
  142. this.lblDate.BackColor = System.Drawing.Color.Transparent;
  143. this.lblDate.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  144. this.lblDate.Location = new System.Drawing.Point(130, 460);
  145. this.lblDate.Name = "lblDate";
  146. this.lblDate.Size = new System.Drawing.Size(78, 19);
  147. this.lblDate.TabIndex = 9;
  148. this.lblDate.Text = "Дата сдачи:";
  149. // dgvStudents (без изменений)
  150. dataGridViewCellStyle1.BackColor = System.Drawing.Color.White;
  151. this.dgvStudents.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  152. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  153. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(52, 73, 94);
  154. dataGridViewCellStyle2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  155. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  156. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(52, 73, 94);
  157. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  158. this.dgvStudents.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  159. this.dgvStudents.ColumnHeadersHeight = 40;
  160. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  161. dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
  162. dataGridViewCellStyle3.Font = new System.Drawing.Font("Segoe UI", 9F);
  163. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(64, 64, 64);
  164. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(229, 241, 251);
  165. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
  166. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  167. this.dgvStudents.DefaultCellStyle = dataGridViewCellStyle3;
  168. this.dgvStudents.GridColor = System.Drawing.Color.FromArgb(230, 230, 230);
  169. this.dgvStudents.Location = new System.Drawing.Point(20, 100);
  170. this.dgvStudents.Name = "dgvStudents";
  171. this.dgvStudents.ReadOnly = true;
  172. this.dgvStudents.RowHeadersVisible = false;
  173. this.dgvStudents.RowTemplate.Height = 30;
  174. this.dgvStudents.Size = new System.Drawing.Size(860, 340);
  175. this.dgvStudents.TabIndex = 6;
  176. this.dgvStudents.SelectionChanged += new System.EventHandler(this.dgvStudents_SelectionChanged);
  177. // cmbSemester
  178. this.cmbSemester.BackColor = System.Drawing.Color.Transparent;
  179. this.cmbSemester.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  180. this.cmbSemester.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  181. this.cmbSemester.FocusedColor = System.Drawing.Color.FromArgb(94, 148, 255);
  182. this.cmbSemester.Font = new System.Drawing.Font("Segoe UI", 10F);
  183. this.cmbSemester.ForeColor = System.Drawing.Color.FromArgb(68, 88, 112);
  184. this.cmbSemester.ItemHeight = 30;
  185. this.cmbSemester.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8" });
  186. this.cmbSemester.Location = new System.Drawing.Point(580, 45);
  187. this.cmbSemester.Name = "cmbSemester";
  188. this.cmbSemester.Size = new System.Drawing.Size(120, 36);
  189. this.cmbSemester.TabIndex = 5;
  190. this.cmbSemester.SelectedIndexChanged += new System.EventHandler(this.cmbSemester_SelectedIndexChanged);
  191. // cmbDiscipline
  192. this.cmbDiscipline.BackColor = System.Drawing.Color.Transparent;
  193. this.cmbDiscipline.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  194. this.cmbDiscipline.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  195. this.cmbDiscipline.FocusedColor = System.Drawing.Color.FromArgb(94, 148, 255);
  196. this.cmbDiscipline.Font = new System.Drawing.Font("Segoe UI", 10F);
  197. this.cmbDiscipline.ForeColor = System.Drawing.Color.FromArgb(68, 88, 112);
  198. this.cmbDiscipline.ItemHeight = 30;
  199. this.cmbDiscipline.Location = new System.Drawing.Point(300, 45);
  200. this.cmbDiscipline.Name = "cmbDiscipline";
  201. this.cmbDiscipline.Size = new System.Drawing.Size(250, 36);
  202. this.cmbDiscipline.TabIndex = 3;
  203. this.cmbDiscipline.SelectedIndexChanged += new System.EventHandler(this.cmbDiscipline_SelectedIndexChanged);
  204. // cmbGroup
  205. this.cmbGroup.BackColor = System.Drawing.Color.Transparent;
  206. this.cmbGroup.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  207. this.cmbGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  208. this.cmbGroup.FocusedColor = System.Drawing.Color.FromArgb(94, 148, 255);
  209. this.cmbGroup.Font = new System.Drawing.Font("Segoe UI", 10F);
  210. this.cmbGroup.ForeColor = System.Drawing.Color.FromArgb(68, 88, 112);
  211. this.cmbGroup.ItemHeight = 30;
  212. this.cmbGroup.Location = new System.Drawing.Point(20, 45);
  213. this.cmbGroup.Name = "cmbGroup";
  214. this.cmbGroup.Size = new System.Drawing.Size(250, 36);
  215. this.cmbGroup.TabIndex = 1;
  216. this.cmbGroup.SelectedIndexChanged += new System.EventHandler(this.cmbGroup_SelectedIndexChanged);
  217. // lblSemester
  218. this.lblSemester.BackColor = System.Drawing.Color.Transparent;
  219. this.lblSemester.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  220. this.lblSemester.Location = new System.Drawing.Point(580, 20);
  221. this.lblSemester.Name = "lblSemester";
  222. this.lblSemester.Size = new System.Drawing.Size(59, 19);
  223. this.lblSemester.TabIndex = 4;
  224. this.lblSemester.Text = "Семестр:";
  225. // lblDiscipline
  226. this.lblDiscipline.BackColor = System.Drawing.Color.Transparent;
  227. this.lblDiscipline.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  228. this.lblDiscipline.Location = new System.Drawing.Point(300, 20);
  229. this.lblDiscipline.Name = "lblDiscipline";
  230. this.lblDiscipline.Size = new System.Drawing.Size(86, 19);
  231. this.lblDiscipline.TabIndex = 2;
  232. this.lblDiscipline.Text = "Дисциплина:";
  233. // lblGroup
  234. this.lblGroup.BackColor = System.Drawing.Color.Transparent;
  235. this.lblGroup.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  236. this.lblGroup.Location = new System.Drawing.Point(20, 20);
  237. this.lblGroup.Name = "lblGroup";
  238. this.lblGroup.Size = new System.Drawing.Size(52, 19);
  239. this.lblGroup.TabIndex = 0;
  240. this.lblGroup.Text = "Группа:";
  241. // GradeForm
  242. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  243. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  244. this.BackColor = System.Drawing.Color.FromArgb(240, 242, 245);
  245. this.ClientSize = new System.Drawing.Size(900, 600);
  246. this.Controls.Add(this.panelContent);
  247. this.Controls.Add(this.panelHeader);
  248. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  249. this.MaximizeBox = false;
  250. this.Name = "GradeForm";
  251. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  252. this.Text = "Управление успеваемостью";
  253. this.panelHeader.ResumeLayout(false);
  254. this.panelHeader.PerformLayout();
  255. this.panelContent.ResumeLayout(false);
  256. this.panelContent.PerformLayout();
  257. ((System.ComponentModel.ISupportInitialize)(this.nudGrade)).EndInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
  259. this.ResumeLayout(false);
  260. }
  261. // Поля компонентов
  262. private Guna.UI2.WinForms.Guna2Panel panelHeader;
  263. private Guna.UI2.WinForms.Guna2HtmlLabel lblTitle;
  264. private Guna.UI2.WinForms.Guna2Panel panelContent;
  265. private Guna.UI2.WinForms.Guna2ComboBox cmbGroup;
  266. private Guna.UI2.WinForms.Guna2ComboBox cmbDiscipline;
  267. private Guna.UI2.WinForms.Guna2ComboBox cmbSemester;
  268. private Guna.UI2.WinForms.Guna2DataGridView dgvStudents;
  269. private Guna.UI2.WinForms.Guna2HtmlLabel lblGroup;
  270. private Guna.UI2.WinForms.Guna2HtmlLabel lblDiscipline;
  271. private Guna.UI2.WinForms.Guna2HtmlLabel lblSemester;
  272. private Guna.UI2.WinForms.Guna2HtmlLabel lblGrade;
  273. private Guna.UI2.WinForms.Guna2HtmlLabel lblDate;
  274. private Guna.UI2.WinForms.Guna2NumericUpDown nudGrade;
  275. private Guna.UI2.WinForms.Guna2DateTimePicker dtpExamDate;
  276. private Guna.UI2.WinForms.Guna2Button btnSave;
  277. private Guna.UI2.WinForms.Guna2Button btnRefresh; // добавлено
  278. private Guna.UI2.WinForms.Guna2TextBox txtSearchStudent; // добавлено
  279. }
  280. }