SearchTextBox.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 
  2. namespace FileWatcher
  3. {
  4. partial class SearchTextBox
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.Search_Icon = new FileWatcher.ClickPicBox();
  30. this.TextBox = new FileWatcher.EnterTextBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // Search_Icon
  35. //
  36. this.Search_Icon.AllPower = null;
  37. this.Search_Icon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  38. this.Search_Icon.Cursor = System.Windows.Forms.Cursors.Hand;
  39. this.Search_Icon.ErrorImage = global::FileWatcher.Properties.Resources.preview_16px_25980_easyicon_net;
  40. this.Search_Icon.Image = global::FileWatcher.Properties.Resources.preview_16px_25980_easyicon_net;
  41. this.Search_Icon.Location = new System.Drawing.Point(370, 0);
  42. this.Search_Icon.Name = "Search_Icon";
  43. this.Search_Icon.Power = "";
  44. this.Search_Icon.Size = new System.Drawing.Size(53, 35);
  45. this.Search_Icon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  46. this.Search_Icon.TabIndex = 1;
  47. this.Search_Icon.TabStop = false;
  48. this.Search_Icon.Click += new System.EventHandler(this.Search_Icon_Click);
  49. //
  50. // TextBox
  51. //
  52. this.TextBox.AllPower = null;
  53. this.TextBox.BackColor = System.Drawing.Color.White;
  54. this.TextBox.Dock = System.Windows.Forms.DockStyle.Left;
  55. this.TextBox.ID = null;
  56. this.TextBox.Location = new System.Drawing.Point(0, 0);
  57. this.TextBox.Name = "TextBox";
  58. this.TextBox.Power = null;
  59. this.TextBox.Size = new System.Drawing.Size(364, 35);
  60. this.TextBox.Str = null;
  61. this.TextBox.Str1 = null;
  62. this.TextBox.Str2 = null;
  63. this.TextBox.TabIndex = 0;
  64. this.TextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  65. this.TextBox.Enter += new System.EventHandler(this.TextBox_Enter);
  66. this.TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBox_KeyDown);
  67. this.TextBox.Leave += new System.EventHandler(this.TextBox_Leave);
  68. //
  69. // SearchTextBox
  70. //
  71. this.Controls.Add(this.Search_Icon);
  72. this.Controls.Add(this.TextBox);
  73. this.Name = "SearchTextBox";
  74. this.Size = new System.Drawing.Size(426, 42);
  75. this.Load += new System.EventHandler(this.SearchTextBox_Load);
  76. this.SizeChanged += new System.EventHandler(this.SearchTextBox_SizeChanged);
  77. ((System.ComponentModel.ISupportInitialize)(this.Search_Icon)).EndInit();
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private ClickPicBox Search_Icon;
  83. private EnterTextBox TextBox;
  84. }
  85. }