1
0

Flow.Designer.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. namespace ServiceWrapper
  2. {
  3. partial class Flow
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Flow));
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.timer2 = new System.Windows.Forms.Timer(this.components);
  33. this.SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right)));
  40. this.panel1.AutoSize = true;
  41. this.panel1.Location = new System.Drawing.Point(2, 3);
  42. this.panel1.Name = "panel1";
  43. this.panel1.Size = new System.Drawing.Size(923, 676);
  44. this.panel1.TabIndex = 0;
  45. //
  46. // timer1
  47. //
  48. this.timer1.Interval = 500;
  49. this.timer1.Tick += new System.EventHandler(this.timer1_Tick_1);
  50. //
  51. // timer2
  52. //
  53. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  54. //
  55. // Flow
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59. this.ClientSize = new System.Drawing.Size(931, 713);
  60. this.Controls.Add(this.panel1);
  61. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  62. this.Name = "Flow";
  63. this.Text = "服务包装手动版";
  64. this.Load += new System.EventHandler(this.Flow_Load);
  65. this.ResumeLayout(false);
  66. this.PerformLayout();
  67. }
  68. #endregion
  69. private System.Windows.Forms.Panel panel1;
  70. private System.Windows.Forms.Timer timer1;
  71. private System.Windows.Forms.Timer timer2;
  72. }
  73. }