frmOrderlaw.Designer.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace Core.StlMes.Client.SaleOrder
  2. {
  3. partial class frmOrderlaw
  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.cho_reason = new System.Windows.Forms.TextBox();
  29. this.chm_sure = new System.Windows.Forms.Button();
  30. this.chm_close = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // cho_reason
  34. //
  35. this.cho_reason.Dock = System.Windows.Forms.DockStyle.Top;
  36. this.cho_reason.Location = new System.Drawing.Point(0, 0);
  37. this.cho_reason.Multiline = true;
  38. this.cho_reason.Name = "cho_reason";
  39. this.cho_reason.Size = new System.Drawing.Size(344, 193);
  40. this.cho_reason.TabIndex = 0;
  41. //
  42. // chm_sure
  43. //
  44. this.chm_sure.Location = new System.Drawing.Point(132, 215);
  45. this.chm_sure.Name = "chm_sure";
  46. this.chm_sure.Size = new System.Drawing.Size(89, 35);
  47. this.chm_sure.TabIndex = 1;
  48. this.chm_sure.Text = "确定";
  49. this.chm_sure.UseVisualStyleBackColor = true;
  50. this.chm_sure.Click += new System.EventHandler(this.button1_Click);
  51. //
  52. // chm_close
  53. //
  54. this.chm_close.Location = new System.Drawing.Point(241, 215);
  55. this.chm_close.Name = "chm_close";
  56. this.chm_close.Size = new System.Drawing.Size(89, 35);
  57. this.chm_close.TabIndex = 2;
  58. this.chm_close.Text = "关闭";
  59. this.chm_close.UseVisualStyleBackColor = true;
  60. this.chm_close.Click += new System.EventHandler(this.chm_close_Click);
  61. //
  62. // frmOrderlaw
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(344, 262);
  67. this.Controls.Add(this.chm_close);
  68. this.Controls.Add(this.chm_sure);
  69. this.Controls.Add(this.cho_reason);
  70. this.Name = "frmOrderlaw";
  71. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  72. this.Text = "评审不通过原因";
  73. this.Load += new System.EventHandler(this.frmOrderlaw_Load);
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.TextBox cho_reason;
  79. private System.Windows.Forms.Button chm_sure;
  80. private System.Windows.Forms.Button chm_close;
  81. }
  82. }