TextBoxWithTextArea.Designer.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. namespace UAS_MES.CustomControl.TextBoxWithIcon
  2. {
  3. partial class TextBoxWithTextArea
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.textBox1 = new CustomControl.TextBoxWithIcon.MaCodeTextBox();
  29. this.TextAreaIcon = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.TextAreaIcon)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // textBox1
  34. //
  35. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.textBox1.Location = new System.Drawing.Point(0, 0);
  37. this.textBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  38. this.textBox1.Name = "textBox1";
  39. this.textBox1.Size = new System.Drawing.Size(265, 25);
  40. this.textBox1.TabIndex = 0;
  41. this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
  42. this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
  43. //
  44. // TextAreaIcon
  45. //
  46. this.TextAreaIcon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Right)));
  48. this.TextAreaIcon.Cursor = System.Windows.Forms.Cursors.Hand;
  49. this.TextAreaIcon.Image = global::UAS_MES.Properties.Resources.notice_text_editor_16px_11373_easyicon_net;
  50. this.TextAreaIcon.Location = new System.Drawing.Point(239, 1);
  51. this.TextAreaIcon.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  52. this.TextAreaIcon.Name = "TextAreaIcon";
  53. this.TextAreaIcon.Size = new System.Drawing.Size(25, 24);
  54. this.TextAreaIcon.TabIndex = 1;
  55. this.TextAreaIcon.TabStop = false;
  56. this.TextAreaIcon.Click += new System.EventHandler(this.TextAreaIcon_Click);
  57. //
  58. // TextBoxWithTextArea
  59. //
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  62. this.Controls.Add(this.TextAreaIcon);
  63. this.Controls.Add(this.textBox1);
  64. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  65. this.Name = "TextBoxWithTextArea";
  66. this.Size = new System.Drawing.Size(265, 28);
  67. ((System.ComponentModel.ISupportInitialize)(this.TextAreaIcon)).EndInit();
  68. this.ResumeLayout(false);
  69. this.PerformLayout();
  70. }
  71. #endregion
  72. private CustomControl.TextBoxWithIcon.MaCodeTextBox textBox1;
  73. private System.Windows.Forms.PictureBox TextAreaIcon;
  74. }
  75. }