Form_Main.Designer.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. 
  2. namespace IMCS
  3. {
  4. partial class Form_Main
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  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.userControl51 = new IMCS.UControl.UserControl5();
  32. this.SuspendLayout();
  33. //
  34. // timer1
  35. //
  36. this.timer1.Interval = 1000;
  37. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  38. //
  39. // userControl51
  40. //
  41. this.userControl51.Dock = System.Windows.Forms.DockStyle.Fill;
  42. this.userControl51.Location = new System.Drawing.Point(0, 0);
  43. this.userControl51.Name = "userControl51";
  44. this.userControl51.Size = new System.Drawing.Size(957, 640);
  45. this.userControl51.TabIndex = 0;
  46. //
  47. // Form_Main
  48. //
  49. this.AllowDrop = true;
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  52. this.ClientSize = new System.Drawing.Size(957, 640);
  53. this.Controls.Add(this.userControl51);
  54. this.Name = "Form_Main";
  55. this.Text = "Form1";
  56. this.ResumeLayout(false);
  57. }
  58. #endregion
  59. private System.Windows.Forms.Timer timer1;
  60. private UControl.UserControl5 userControl51;
  61. }
  62. }