SearchTextBox.Designer.cs 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. namespace UAS_LabelMachine.CustomControl
  2. {
  3. partial class SearchTextBox
  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.Search_Icon = new System.Windows.Forms.PictureBox();
  29. this.TextBox = new System.Windows.Forms.TextBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // Search_Icon
  34. //
  35. this.Search_Icon.Cursor = System.Windows.Forms.Cursors.Hand;
  36. this.Search_Icon.Dock = System.Windows.Forms.DockStyle.Right;
  37. this.Search_Icon.Image = global::UAS_LabelMachine.Properties.Resources.search_16px_1202802_easyicon_net;
  38. this.Search_Icon.Location = new System.Drawing.Point(183, 0);
  39. this.Search_Icon.Name = "Search_Icon";
  40. this.Search_Icon.Size = new System.Drawing.Size(21, 21);
  41. this.Search_Icon.TabIndex = 1;
  42. this.Search_Icon.TabStop = false;
  43. this.Search_Icon.Click += new System.EventHandler(this.Search_Icon_Click);
  44. //
  45. // TextBox
  46. //
  47. this.TextBox.BackColor = System.Drawing.Color.White;
  48. this.TextBox.Dock = System.Windows.Forms.DockStyle.Left;
  49. this.TextBox.Location = new System.Drawing.Point(0, 0);
  50. this.TextBox.Name = "TextBox";
  51. this.TextBox.Size = new System.Drawing.Size(178, 35);
  52. this.TextBox.TabIndex = 0;
  53. this.TextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  54. this.TextBox.Enter += new System.EventHandler(this.TextBox_Enter);
  55. this.TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBox_KeyDown);
  56. this.TextBox.Leave += new System.EventHandler(this.TextBox_Leave);
  57. //
  58. // SearchTextBox
  59. //
  60. this.Controls.Add(this.Search_Icon);
  61. this.Controls.Add(this.TextBox);
  62. this.Name = "SearchTextBox";
  63. this.Size = new System.Drawing.Size(204, 21);
  64. this.Load += new System.EventHandler(this.SearchTextBox_Load);
  65. this.SizeChanged += new System.EventHandler(this.SearchTextBox_SizeChanged);
  66. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).EndInit();
  67. this.ResumeLayout(false);
  68. this.PerformLayout();
  69. }
  70. #endregion
  71. private System.Windows.Forms.PictureBox Search_Icon;
  72. private System.Windows.Forms.TextBox TextBox;
  73. }
  74. }