Form_PRIORITY.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. namespace WCS_Client.From
  2. {
  3. partial class Form_PRIORITY
  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.nudPRIORITY = new System.Windows.Forms.NumericUpDown();
  30. this.btnUpdateSave = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.lblTask_no = new System.Windows.Forms.Label();
  34. ((System.ComponentModel.ISupportInitialize)(this.nudPRIORITY)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Location = new System.Drawing.Point(80, 60);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(53, 12);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "优先级:";
  45. //
  46. // nudPRIORITY
  47. //
  48. this.nudPRIORITY.Location = new System.Drawing.Point(155, 56);
  49. this.nudPRIORITY.Maximum = new decimal(new int[] {
  50. 10000,
  51. 0,
  52. 0,
  53. 0});
  54. this.nudPRIORITY.Name = "nudPRIORITY";
  55. this.nudPRIORITY.ReadOnly = true;
  56. this.nudPRIORITY.Size = new System.Drawing.Size(120, 21);
  57. this.nudPRIORITY.TabIndex = 1;
  58. this.nudPRIORITY.Value = new decimal(new int[] {
  59. 2,
  60. 0,
  61. 0,
  62. 0});
  63. //
  64. // btnUpdateSave
  65. //
  66. this.btnUpdateSave.Location = new System.Drawing.Point(64, 108);
  67. this.btnUpdateSave.Name = "btnUpdateSave";
  68. this.btnUpdateSave.Size = new System.Drawing.Size(75, 23);
  69. this.btnUpdateSave.TabIndex = 2;
  70. this.btnUpdateSave.Text = "修改保存";
  71. this.btnUpdateSave.UseVisualStyleBackColor = true;
  72. this.btnUpdateSave.Click += new System.EventHandler(this.btnUpdateSave_Click);
  73. //
  74. // btnCancel
  75. //
  76. this.btnCancel.Location = new System.Drawing.Point(209, 108);
  77. this.btnCancel.Name = "btnCancel";
  78. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  79. this.btnCancel.TabIndex = 3;
  80. this.btnCancel.Text = "取消";
  81. this.btnCancel.UseVisualStyleBackColor = true;
  82. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  83. //
  84. // label2
  85. //
  86. this.label2.AutoSize = true;
  87. this.label2.Location = new System.Drawing.Point(80, 20);
  88. this.label2.Name = "label2";
  89. this.label2.Size = new System.Drawing.Size(53, 12);
  90. this.label2.TabIndex = 4;
  91. this.label2.Text = "任务号:";
  92. //
  93. // lblTask_no
  94. //
  95. this.lblTask_no.AutoSize = true;
  96. this.lblTask_no.Location = new System.Drawing.Point(155, 20);
  97. this.lblTask_no.Name = "lblTask_no";
  98. this.lblTask_no.Size = new System.Drawing.Size(41, 12);
  99. this.lblTask_no.TabIndex = 5;
  100. this.lblTask_no.Text = "任务号";
  101. //
  102. // Form_PRIORITY
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  106. this.ClientSize = new System.Drawing.Size(361, 155);
  107. this.Controls.Add(this.lblTask_no);
  108. this.Controls.Add(this.label2);
  109. this.Controls.Add(this.btnCancel);
  110. this.Controls.Add(this.btnUpdateSave);
  111. this.Controls.Add(this.nudPRIORITY);
  112. this.Controls.Add(this.label1);
  113. this.MinimizeBox = false;
  114. this.Name = "Form_PRIORITY";
  115. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  116. this.Text = "调整优先级";
  117. ((System.ComponentModel.ISupportInitialize)(this.nudPRIORITY)).EndInit();
  118. this.ResumeLayout(false);
  119. this.PerformLayout();
  120. }
  121. #endregion
  122. private System.Windows.Forms.Label label1;
  123. private System.Windows.Forms.NumericUpDown nudPRIORITY;
  124. private System.Windows.Forms.Button btnUpdateSave;
  125. private System.Windows.Forms.Button btnCancel;
  126. private System.Windows.Forms.Label label2;
  127. private System.Windows.Forms.Label lblTask_no;
  128. }
  129. }