WorkWidth.Designer.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. namespace WinForms
  2. {
  3. partial class WorkWidth
  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. this.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.oldWidth = new System.Windows.Forms.Label();
  31. this.newWidth = new System.Windows.Forms.TextBox();
  32. this.btnCancel = new System.Windows.Forms.Button();
  33. this.btnSubmit = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  40. this.label1.Location = new System.Drawing.Point(12, 20);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(90, 21);
  43. this.label1.TabIndex = 71;
  44. this.label1.Text = "旧的幅宽:";
  45. //
  46. // label2
  47. //
  48. this.label2.AutoSize = true;
  49. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.label2.Location = new System.Drawing.Point(12, 64);
  51. this.label2.Name = "label2";
  52. this.label2.Size = new System.Drawing.Size(90, 21);
  53. this.label2.TabIndex = 72;
  54. this.label2.Text = "新的幅宽:";
  55. //
  56. // oldWidth
  57. //
  58. this.oldWidth.AutoSize = true;
  59. this.oldWidth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  60. this.oldWidth.Location = new System.Drawing.Point(104, 20);
  61. this.oldWidth.Name = "oldWidth";
  62. this.oldWidth.Size = new System.Drawing.Size(0, 21);
  63. this.oldWidth.TabIndex = 73;
  64. //
  65. // newWidth
  66. //
  67. this.newWidth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  68. this.newWidth.Location = new System.Drawing.Point(104, 61);
  69. this.newWidth.Name = "newWidth";
  70. this.newWidth.Size = new System.Drawing.Size(211, 29);
  71. this.newWidth.TabIndex = 74;
  72. //
  73. // btnCancel
  74. //
  75. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  76. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  77. this.btnCancel.Location = new System.Drawing.Point(235, 101);
  78. this.btnCancel.Name = "btnCancel";
  79. this.btnCancel.Size = new System.Drawing.Size(80, 30);
  80. this.btnCancel.TabIndex = 76;
  81. this.btnCancel.Text = "取消";
  82. this.btnCancel.UseVisualStyleBackColor = true;
  83. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  84. //
  85. // btnSubmit
  86. //
  87. this.btnSubmit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  88. this.btnSubmit.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  89. this.btnSubmit.Location = new System.Drawing.Point(149, 101);
  90. this.btnSubmit.Name = "btnSubmit";
  91. this.btnSubmit.Size = new System.Drawing.Size(80, 30);
  92. this.btnSubmit.TabIndex = 75;
  93. this.btnSubmit.Text = "确定";
  94. this.btnSubmit.UseVisualStyleBackColor = true;
  95. this.btnSubmit.Click += new System.EventHandler(this.btnSubmit_Click);
  96. //
  97. // WorkWidth
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.BackColor = System.Drawing.Color.White;
  102. this.ClientSize = new System.Drawing.Size(327, 143);
  103. this.Controls.Add(this.btnCancel);
  104. this.Controls.Add(this.btnSubmit);
  105. this.Controls.Add(this.newWidth);
  106. this.Controls.Add(this.oldWidth);
  107. this.Controls.Add(this.label2);
  108. this.Controls.Add(this.label1);
  109. this.MaximizeBox = false;
  110. this.MinimizeBox = false;
  111. this.Name = "WorkWidth";
  112. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  113. this.Text = "工单编号";
  114. this.ResumeLayout(false);
  115. this.PerformLayout();
  116. }
  117. #endregion
  118. private System.Windows.Forms.Label label1;
  119. private System.Windows.Forms.Label label2;
  120. private System.Windows.Forms.Label oldWidth;
  121. private System.Windows.Forms.TextBox newWidth;
  122. private System.Windows.Forms.Button btnCancel;
  123. private System.Windows.Forms.Button btnSubmit;
  124. }
  125. }