| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- namespace Dongke.WinForm.Controls
- {
- partial class ScbSearchBox
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- if (components != null)
- {
- components.Dispose();
- }
- if (this._searchForm != null)
- {
- this._searchForm.Dispose();
- }
- }
- base.Dispose(disposing);
- }
- #region 组件设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.btnSearch = new System.Windows.Forms.Button();
- this.txtCondition1 = new Dongke.WinForm.Controls.TxtTextBox();
- this.SuspendLayout();
- //
- // btnSearch
- //
- this.btnSearch.BackgroundImage = global::Dongke.WinForm.Controls.Properties.Resources.SearchBox_Button_00;
- this.btnSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.btnSearch.Dock = System.Windows.Forms.DockStyle.Right;
- this.btnSearch.Location = new System.Drawing.Point(103, 0);
- this.btnSearch.Name = "btnSearch";
- this.btnSearch.Size = new System.Drawing.Size(21, 21);
- this.btnSearch.TabIndex = 1;
- this.btnSearch.UseVisualStyleBackColor = true;
- this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
- //
- // txtCondition1
- //
- this.txtCondition1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.txtCondition1.Location = new System.Drawing.Point(0, 0);
- this.txtCondition1.Name = "txtCondition1";
- this.txtCondition1.ReadOnly = true;
- this.txtCondition1.Size = new System.Drawing.Size(100, 21);
- this.txtCondition1.TabIndex = 0;
- this.txtCondition1.TextChanged += new System.EventHandler(this.txtCondition1_TextChanged);
- //
- // ScbSearchBox
- //
- this.BackColor = System.Drawing.Color.Transparent;
- this.Controls.Add(this.txtCondition1);
- this.Controls.Add(this.btnSearch);
- this.Name = "ScbSearchBox";
- this.Size = new System.Drawing.Size(124, 21);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- /// <summary>
- /// 查询按钮
- /// </summary>
- protected System.Windows.Forms.Button btnSearch;
- /// <summary>
- /// 查询条件
- /// </summary>
- protected TxtTextBox txtCondition1;
- }
- }
|