Form2.Designer.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. namespace data_displayer
  2. {
  3. partial class Form2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
  29. dateTimePicker1 = new DateTimePicker();
  30. label1 = new Label();
  31. SuspendLayout();
  32. //
  33. // dateTimePicker1
  34. //
  35. dateTimePicker1.Location = new Point(162, 12);
  36. dateTimePicker1.Name = "dateTimePicker1";
  37. dateTimePicker1.Size = new Size(200, 23);
  38. dateTimePicker1.TabIndex = 0;
  39. dateTimePicker1.Value = new DateTime(1753, 1, 1, 0, 0, 0, 0);
  40. dateTimePicker1.ValueChanged += dateTimePicker1_ValueChanged;
  41. //
  42. // label1
  43. //
  44. label1.AutoSize = true;
  45. label1.Location = new Point(12, 18);
  46. label1.Name = "label1";
  47. label1.Size = new Size(144, 15);
  48. label1.TabIndex = 1;
  49. label1.Text = "Start of the teaching week";
  50. //
  51. // Form2
  52. //
  53. AutoScaleDimensions = new SizeF(7F, 15F);
  54. AutoScaleMode = AutoScaleMode.Font;
  55. ClientSize = new Size(375, 48);
  56. Controls.Add(label1);
  57. Controls.Add(dateTimePicker1);
  58. FormBorderStyle = FormBorderStyle.FixedToolWindow;
  59. Icon = (Icon)resources.GetObject("$this.Icon");
  60. Name = "Form2";
  61. Text = "Settings - Data Displayer";
  62. ResumeLayout(false);
  63. PerformLayout();
  64. }
  65. #endregion
  66. private DateTimePicker dateTimePicker1;
  67. private Label label1;
  68. }
  69. }