dkStaffSearchBox.Designer.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. namespace Dongke.IBOSS.PRD.Client.Controls
  2. {
  3. partial class dkStaffSearchBox
  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.btnSearch = new System.Windows.Forms.Button();
  29. this.txtUser = new System.Windows.Forms.TextBox();
  30. this.lblUser = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // btnSearch
  34. //
  35. this.btnSearch.Image = global::Dongke.IBOSS.PRD.Client.Controls.Properties.Resources.searchButton;
  36. this.btnSearch.Location = new System.Drawing.Point(221, 5);
  37. this.btnSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  38. this.btnSearch.Name = "btnSearch";
  39. this.btnSearch.Size = new System.Drawing.Size(21, 21);
  40. this.btnSearch.TabIndex = 7;
  41. this.btnSearch.UseVisualStyleBackColor = true;
  42. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  43. //
  44. // txtUser
  45. //
  46. this.txtUser.Font = new System.Drawing.Font("宋体", 9F);
  47. this.txtUser.Location = new System.Drawing.Point(60, 6);
  48. this.txtUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  49. this.txtUser.Name = "txtUser";
  50. this.txtUser.ReadOnly = true;
  51. this.txtUser.Size = new System.Drawing.Size(155, 21);
  52. this.txtUser.TabIndex = 6;
  53. this.txtUser.TextChanged += new System.EventHandler(this.txtUser_TextChanged);
  54. this.txtUser.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUser_KeyDown);
  55. //
  56. // lblUser
  57. //
  58. this.lblUser.AutoSize = true;
  59. this.lblUser.BackColor = System.Drawing.Color.Transparent;
  60. this.lblUser.Location = new System.Drawing.Point(4, 9);
  61. this.lblUser.Name = "lblUser";
  62. this.lblUser.Size = new System.Drawing.Size(53, 12);
  63. this.lblUser.TabIndex = 5;
  64. this.lblUser.Text = "员工姓名";
  65. //
  66. // dkStaffSearchBox
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.Controls.Add(this.btnSearch);
  71. this.Controls.Add(this.txtUser);
  72. this.Controls.Add(this.lblUser);
  73. this.Name = "dkStaffSearchBox";
  74. this.Size = new System.Drawing.Size(247, 31);
  75. this.SizeChanged += new System.EventHandler(this.dkUserSearchBox_SizeChanged);
  76. this.ResumeLayout(false);
  77. this.PerformLayout();
  78. }
  79. #endregion
  80. private System.Windows.Forms.Button btnSearch;
  81. private System.Windows.Forms.TextBox txtUser;
  82. private System.Windows.Forms.Label lblUser;
  83. }
  84. }