MainForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. 
  2. namespace DayOf1440
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.timer1 = new System.Windows.Forms.Timer(this.components);
  31. this.panelNum = new System.Windows.Forms.Panel();
  32. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  33. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  34. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  35. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  36. this.panelNum.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  38. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  39. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  40. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // timer1
  44. //
  45. this.timer1.Enabled = true;
  46. this.timer1.Interval = 1000;
  47. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  48. //
  49. // panelNum
  50. //
  51. this.panelNum.BackColor = System.Drawing.Color.Transparent;
  52. this.panelNum.Controls.Add(this.pictureBox4);
  53. this.panelNum.Controls.Add(this.pictureBox3);
  54. this.panelNum.Controls.Add(this.pictureBox2);
  55. this.panelNum.Controls.Add(this.pictureBox1);
  56. this.panelNum.Location = new System.Drawing.Point(385, 283);
  57. this.panelNum.Name = "panelNum";
  58. this.panelNum.Size = new System.Drawing.Size(596, 202);
  59. this.panelNum.TabIndex = 0;
  60. //
  61. // pictureBox1
  62. //
  63. this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  64. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  65. this.pictureBox1.Name = "pictureBox1";
  66. this.pictureBox1.Size = new System.Drawing.Size(144, 202);
  67. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  68. this.pictureBox1.TabIndex = 0;
  69. this.pictureBox1.TabStop = false;
  70. this.pictureBox1.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
  71. //
  72. // pictureBox2
  73. //
  74. this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  75. this.pictureBox2.Location = new System.Drawing.Point(148, 0);
  76. this.pictureBox2.Name = "pictureBox2";
  77. this.pictureBox2.Size = new System.Drawing.Size(144, 202);
  78. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  79. this.pictureBox2.TabIndex = 1;
  80. this.pictureBox2.TabStop = false;
  81. this.pictureBox2.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
  82. //
  83. // pictureBox3
  84. //
  85. this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  86. this.pictureBox3.Location = new System.Drawing.Point(297, 0);
  87. this.pictureBox3.Name = "pictureBox3";
  88. this.pictureBox3.Size = new System.Drawing.Size(144, 202);
  89. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  90. this.pictureBox3.TabIndex = 2;
  91. this.pictureBox3.TabStop = false;
  92. this.pictureBox3.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
  93. //
  94. // pictureBox4
  95. //
  96. this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  97. this.pictureBox4.Location = new System.Drawing.Point(446, 0);
  98. this.pictureBox4.Name = "pictureBox4";
  99. this.pictureBox4.Size = new System.Drawing.Size(144, 202);
  100. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  101. this.pictureBox4.TabIndex = 3;
  102. this.pictureBox4.TabStop = false;
  103. this.pictureBox4.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
  104. //
  105. // MainForm
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.BackgroundImage = global::DayOf1440.Properties.Resources.background__2_;
  110. this.ClientSize = new System.Drawing.Size(1366, 768);
  111. this.Controls.Add(this.panelNum);
  112. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  113. this.Name = "MainForm";
  114. this.Text = "Form1";
  115. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  116. this.Load += new System.EventHandler(this.MainForm_Load);
  117. this.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
  118. this.panelNum.ResumeLayout(false);
  119. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  120. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  121. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  122. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  123. this.ResumeLayout(false);
  124. }
  125. #endregion
  126. private System.Windows.Forms.Timer timer1;
  127. private System.Windows.Forms.Panel panelNum;
  128. private System.Windows.Forms.PictureBox pictureBox4;
  129. private System.Windows.Forms.PictureBox pictureBox3;
  130. private System.Windows.Forms.PictureBox pictureBox2;
  131. private System.Windows.Forms.PictureBox pictureBox1;
  132. }
  133. }