TextBoxWithPlaceHolder.Designer.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. namespace UAS_MES_NEW.CustomControl.TextBoxWithIcon
  2. {
  3. partial class TextBoxWithPlaceHolder
  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.TextBox = new UAS_MES_NEW.CustomControl.TextBoxWithIcon.EnterTextBox();
  29. this.SuspendLayout();
  30. //
  31. // TextBox
  32. //
  33. this.TextBox.AllPower = null;
  34. this.TextBox.BackColor = System.Drawing.Color.White;
  35. this.TextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.TextBox.ID = null;
  37. this.TextBox.Location = new System.Drawing.Point(0, 0);
  38. this.TextBox.Name = "TextBox";
  39. this.TextBox.Power = null;
  40. this.TextBox.Size = new System.Drawing.Size(241, 21);
  41. this.TextBox.Str = null;
  42. this.TextBox.Str1 = null;
  43. this.TextBox.Str2 = null;
  44. this.TextBox.TabIndex = 0;
  45. this.TextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  46. this.TextBox.Enter += new System.EventHandler(this.TextBox_Enter);
  47. this.TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBox_KeyDown_1);
  48. this.TextBox.Leave += new System.EventHandler(this.TextBox_Leave);
  49. //
  50. // TextBoxWithPlaceHolder
  51. //
  52. this.BackColor = System.Drawing.Color.Transparent;
  53. this.Controls.Add(this.TextBox);
  54. this.Name = "TextBoxWithPlaceHolder";
  55. this.Size = new System.Drawing.Size(241, 28);
  56. this.ResumeLayout(false);
  57. this.PerformLayout();
  58. }
  59. #endregion
  60. private EnterTextBox TextBox;
  61. }
  62. }