frmDeleteTask.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace Pur.Pop_upWindow
  2. {
  3. partial class frmDeleteTask
  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.txt_bz = new System.Windows.Forms.TextBox();
  30. this.benCancel = new System.Windows.Forms.Button();
  31. this.btnConfirm = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // label1
  35. //
  36. this.label1.AutoSize = true;
  37. this.label1.Location = new System.Drawing.Point(12, 14);
  38. this.label1.Name = "label1";
  39. this.label1.Size = new System.Drawing.Size(29, 12);
  40. this.label1.TabIndex = 0;
  41. this.label1.Text = "备注";
  42. //
  43. // txt_bz
  44. //
  45. this.txt_bz.Location = new System.Drawing.Point(42, 11);
  46. this.txt_bz.MaxLength = 200;
  47. this.txt_bz.Multiline = true;
  48. this.txt_bz.Name = "txt_bz";
  49. this.txt_bz.Size = new System.Drawing.Size(315, 98);
  50. this.txt_bz.TabIndex = 1;
  51. //
  52. // benCancel
  53. //
  54. this.benCancel.Location = new System.Drawing.Point(93, 118);
  55. this.benCancel.Name = "benCancel";
  56. this.benCancel.Size = new System.Drawing.Size(75, 23);
  57. this.benCancel.TabIndex = 2;
  58. this.benCancel.Text = "取 消";
  59. this.benCancel.UseVisualStyleBackColor = true;
  60. this.benCancel.Click += new System.EventHandler(this.benCancel_Click);
  61. //
  62. // btnConfirm
  63. //
  64. this.btnConfirm.Location = new System.Drawing.Point(197, 118);
  65. this.btnConfirm.Name = "btnConfirm";
  66. this.btnConfirm.Size = new System.Drawing.Size(75, 23);
  67. this.btnConfirm.TabIndex = 3;
  68. this.btnConfirm.Text = "确 定";
  69. this.btnConfirm.UseVisualStyleBackColor = true;
  70. this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
  71. //
  72. // frmDeleteTask
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(381, 149);
  77. this.Controls.Add(this.btnConfirm);
  78. this.Controls.Add(this.benCancel);
  79. this.Controls.Add(this.txt_bz);
  80. this.Controls.Add(this.label1);
  81. this.Name = "frmDeleteTask";
  82. this.Text = "废标";
  83. this.ResumeLayout(false);
  84. this.PerformLayout();
  85. }
  86. #endregion
  87. private System.Windows.Forms.Label label1;
  88. private System.Windows.Forms.TextBox txt_bz;
  89. private System.Windows.Forms.Button benCancel;
  90. private System.Windows.Forms.Button btnConfirm;
  91. }
  92. }