ScbSearchBox.Designer.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace Dongke.WinForm.Controls
  2. {
  3. partial class ScbSearchBox
  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)
  16. {
  17. if (components != null)
  18. {
  19. components.Dispose();
  20. }
  21. if (this._searchForm != null)
  22. {
  23. this._searchForm.Dispose();
  24. }
  25. }
  26. base.Dispose(disposing);
  27. }
  28. #region 组件设计器生成的代码
  29. /// <summary>
  30. /// 设计器支持所需的方法 - 不要
  31. /// 使用代码编辑器修改此方法的内容。
  32. /// </summary>
  33. private void InitializeComponent()
  34. {
  35. this.btnSearch = new System.Windows.Forms.Button();
  36. this.txtCondition1 = new Dongke.WinForm.Controls.TxtTextBox();
  37. this.SuspendLayout();
  38. //
  39. // btnSearch
  40. //
  41. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  42. this.btnSearch.BackgroundImage = global::Dongke.WinForm.Controls.Properties.Resources.SearchBox_Button_00;
  43. this.btnSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  44. this.btnSearch.Location = new System.Drawing.Point(103, 0);
  45. this.btnSearch.Name = "btnSearch";
  46. this.btnSearch.Size = new System.Drawing.Size(21, 21);
  47. this.btnSearch.TabIndex = 1;
  48. this.btnSearch.UseVisualStyleBackColor = true;
  49. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  50. //
  51. // txtCondition1
  52. //
  53. this.txtCondition1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  54. | System.Windows.Forms.AnchorStyles.Left)
  55. | System.Windows.Forms.AnchorStyles.Right)));
  56. this.txtCondition1.Location = new System.Drawing.Point(0, 0);
  57. this.txtCondition1.Name = "txtCondition1";
  58. this.txtCondition1.ReadOnly = true;
  59. this.txtCondition1.Size = new System.Drawing.Size(100, 21);
  60. this.txtCondition1.TabIndex = 0;
  61. this.txtCondition1.TextChanged += new System.EventHandler(this.txtCondition1_TextChanged);
  62. //
  63. // ScbSearchBox
  64. //
  65. this.BackColor = System.Drawing.Color.Transparent;
  66. this.Controls.Add(this.txtCondition1);
  67. this.Controls.Add(this.btnSearch);
  68. this.Name = "ScbSearchBox";
  69. this.Size = new System.Drawing.Size(124, 21);
  70. this.ResumeLayout(false);
  71. this.PerformLayout();
  72. }
  73. #endregion
  74. /// <summary>
  75. /// 查询按钮
  76. /// </summary>
  77. protected System.Windows.Forms.Button btnSearch;
  78. /// <summary>
  79. /// 查询条件
  80. /// </summary>
  81. protected TxtTextBox txtCondition1;
  82. }
  83. }