frmProcessAbnormity.Designer.cs 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace Core.LgMes.Client.LgJobMgt
  2. {
  3. partial class frmProcessAbnormity
  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.txtMemo = new System.Windows.Forms.TextBox();
  29. this.butExit = new System.Windows.Forms.Button();
  30. this.butSave = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // txtMemo
  34. //
  35. this.txtMemo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  36. this.txtMemo.Dock = System.Windows.Forms.DockStyle.Top;
  37. this.txtMemo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  38. this.txtMemo.ForeColor = System.Drawing.Color.Red;
  39. this.txtMemo.Location = new System.Drawing.Point(0, 0);
  40. this.txtMemo.Multiline = true;
  41. this.txtMemo.Name = "txtMemo";
  42. this.txtMemo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  43. this.txtMemo.Size = new System.Drawing.Size(423, 103);
  44. this.txtMemo.TabIndex = 0;
  45. //
  46. // butExit
  47. //
  48. this.butExit.Location = new System.Drawing.Point(332, 109);
  49. this.butExit.Name = "butExit";
  50. this.butExit.Size = new System.Drawing.Size(74, 25);
  51. this.butExit.TabIndex = 1;
  52. this.butExit.Text = "取消";
  53. this.butExit.UseVisualStyleBackColor = true;
  54. this.butExit.Click += new System.EventHandler(this.butExit_Click);
  55. //
  56. // butSave
  57. //
  58. this.butSave.Location = new System.Drawing.Point(233, 109);
  59. this.butSave.Name = "butSave";
  60. this.butSave.Size = new System.Drawing.Size(74, 25);
  61. this.butSave.TabIndex = 2;
  62. this.butSave.Text = "保存";
  63. this.butSave.UseVisualStyleBackColor = true;
  64. this.butSave.Click += new System.EventHandler(this.butSave_Click);
  65. //
  66. // frmProcessAbnormity
  67. //
  68. this.BackColor = System.Drawing.Color.LightSteelBlue;
  69. this.ClientSize = new System.Drawing.Size(423, 139);
  70. this.Controls.Add(this.butSave);
  71. this.Controls.Add(this.butExit);
  72. this.Controls.Add(this.txtMemo);
  73. this.MaximizeBox = false;
  74. this.MinimizeBox = false;
  75. this.Name = "frmProcessAbnormity";
  76. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  77. this.Text = "异常信息";
  78. this.WindowState = System.Windows.Forms.FormWindowState.Normal;
  79. this.Load += new System.EventHandler(this.frmProcessAbnormity_Load);
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.TextBox txtMemo;
  85. private System.Windows.Forms.Button butExit;
  86. private System.Windows.Forms.Button butSave;
  87. }
  88. }