TextAreaForm.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. namespace UAS_MES.CustomControl.TextBoxWithIcon
  2. {
  3. partial class TextAreaForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextAreaForm));
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.headBar1 = new UAS_MES.CustomControl.HeadBar();
  31. this.Clean = new UAS_MES.CustomControl.ButtonUtil.NormalButton();
  32. this.Confirm = new UAS_MES.CustomControl.ButtonUtil.NormalButton();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // textBox1
  37. //
  38. this.textBox1.Location = new System.Drawing.Point(1, 33);
  39. this.textBox1.Multiline = true;
  40. this.textBox1.Name = "textBox1";
  41. this.textBox1.Size = new System.Drawing.Size(521, 263);
  42. this.textBox1.TabIndex = 0;
  43. //
  44. // headBar1
  45. //
  46. this.headBar1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  47. this.headBar1.Dock = System.Windows.Forms.DockStyle.Top;
  48. this.headBar1.Location = new System.Drawing.Point(0, 0);
  49. this.headBar1.Name = "headBar1";
  50. this.headBar1.Size = new System.Drawing.Size(522, 32);
  51. this.headBar1.TabIndex = 3;
  52. this.headBar1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.headBar1_MouseDown);
  53. //
  54. // Clean
  55. //
  56. this.Clean.Image = ((System.Drawing.Image)(resources.GetObject("Clean.Image")));
  57. this.Clean.Location = new System.Drawing.Point(283, 302);
  58. this.Clean.Name = "Clean";
  59. this.Clean.Power = null;
  60. this.Clean.Size = new System.Drawing.Size(75, 23);
  61. this.Clean.TabIndex = 2;
  62. this.Clean.Text = "清除";
  63. this.Clean.UseVisualStyleBackColor = true;
  64. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  65. //
  66. // Confirm
  67. //
  68. this.Confirm.Image = ((System.Drawing.Image)(resources.GetObject("Confirm.Image")));
  69. this.Confirm.Location = new System.Drawing.Point(160, 302);
  70. this.Confirm.Name = "Confirm";
  71. this.Confirm.Power = null;
  72. this.Confirm.Size = new System.Drawing.Size(75, 23);
  73. this.Confirm.TabIndex = 1;
  74. this.Confirm.Text = "确认";
  75. this.Confirm.UseVisualStyleBackColor = true;
  76. this.Confirm.Click += new System.EventHandler(this.Confirm_Click);
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  82. this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
  83. this.label1.Location = new System.Drawing.Point(9, 7);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(74, 21);
  86. this.label1.TabIndex = 4;
  87. this.label1.Text = "详细内容";
  88. //
  89. // TextAreaForm
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  94. this.ClientSize = new System.Drawing.Size(522, 329);
  95. this.Controls.Add(this.label1);
  96. this.Controls.Add(this.headBar1);
  97. this.Controls.Add(this.Clean);
  98. this.Controls.Add(this.Confirm);
  99. this.Controls.Add(this.textBox1);
  100. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  101. this.KeyPreview = true;
  102. this.Name = "TextAreaForm";
  103. this.Tag = "ShowDialogWindow";
  104. this.Text = "TextAreaForm";
  105. this.Load += new System.EventHandler(this.TextAreaForm_Load);
  106. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextAreaForm_KeyDown);
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.TextBox textBox1;
  112. private ButtonUtil.NormalButton Confirm;
  113. private ButtonUtil.NormalButton Clean;
  114. private HeadBar headBar1;
  115. private System.Windows.Forms.Label label1;
  116. }
  117. }