SearchTextBox.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.TextBox = new System.Windows.Forms.TextBox();
  29. this.Search_Icon = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // TextBox
  34. //
  35. this.TextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.TextBox.Location = new System.Drawing.Point(0, 0);
  37. this.TextBox.Name = "TextBox";
  38. this.TextBox.Size = new System.Drawing.Size(247, 21);
  39. this.TextBox.TabIndex = 0;
  40. this.TextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  41. this.TextBox.Enter += new System.EventHandler(this.TextBox_Enter);
  42. this.TextBox.Leave += new System.EventHandler(this.TextBox_Leave);
  43. //
  44. // Search_Icon
  45. //
  46. this.Search_Icon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Right)));
  48. this.Search_Icon.Cursor = System.Windows.Forms.Cursors.Hand;
  49. this.Search_Icon.Image = global::UAS_LabelMachine.Properties.Resources.search_16px_1202802_easyicon_net;
  50. this.Search_Icon.Location = new System.Drawing.Point(227, 1);
  51. this.Search_Icon.Name = "Search_Icon";
  52. this.Search_Icon.Size = new System.Drawing.Size(19, 19);
  53. this.Search_Icon.TabIndex = 1;
  54. this.Search_Icon.TabStop = false;
  55. this.Search_Icon.Click += new System.EventHandler(this.Search_Icon_Click);
  56. //
  57. // SearchTextBox
  58. //
  59. this.Controls.Add(this.Search_Icon);
  60. this.Controls.Add(this.TextBox);
  61. this.Name = "SearchTextBox";
  62. this.Size = new System.Drawing.Size(247, 21);
  63. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).EndInit();
  64. this.ResumeLayout(false);
  65. this.PerformLayout();
  66. }
  67. #endregion
  68. private System.Windows.Forms.TextBox TextBox;
  69. private System.Windows.Forms.PictureBox Search_Icon;
  70. }
  71. }