Form1.Designer.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. 
  2. namespace LiChenkingdee
  3. {
  4. partial class Form1
  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.label1 = new System.Windows.Forms.Label();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.timer1 = new System.Windows.Forms.Timer(this.components);
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Location = new System.Drawing.Point(49, 19);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(53, 12);
  41. this.label1.TabIndex = 0;
  42. this.label1.Text = "同步时间";
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(108, 12);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(100, 21);
  49. this.textBox1.TabIndex = 1;
  50. //
  51. // timer1
  52. //
  53. this.timer1.Interval = 600000;
  54. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  55. //
  56. // Form1
  57. //
  58. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  59. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  60. this.ClientSize = new System.Drawing.Size(307, 55);
  61. this.Controls.Add(this.textBox1);
  62. this.Controls.Add(this.label1);
  63. this.Name = "Form1";
  64. this.Text = "Form1";
  65. this.ResumeLayout(false);
  66. this.PerformLayout();
  67. }
  68. #endregion
  69. private System.Windows.Forms.Label label1;
  70. private System.Windows.Forms.TextBox textBox1;
  71. private System.Windows.Forms.Timer timer1;
  72. }
  73. }