Example #1
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.autoCompleteTextBox1 = new AutoSearchTextBox.AutoCompleteTextBox();
     this.SuspendLayout();
     //
     // autoCompleteTextBox1
     //
     this.autoCompleteTextBox1.BorderStyle             = System.Windows.Forms.BorderStyle.None;
     this.autoCompleteTextBox1.Dock                    = System.Windows.Forms.DockStyle.Fill;
     this.autoCompleteTextBox1.Font                    = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.autoCompleteTextBox1.Location                = new System.Drawing.Point(4, 4);
     this.autoCompleteTextBox1.Name                    = "autoCompleteTextBox1";
     this.autoCompleteTextBox1.PopupBorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.autoCompleteTextBox1.PopupOffset             = new System.Drawing.Point(12, 4);
     this.autoCompleteTextBox1.PopupSelectionBackColor = System.Drawing.SystemColors.Highlight;
     this.autoCompleteTextBox1.PopupSelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.autoCompleteTextBox1.PopupWidth              = 120;
     this.autoCompleteTextBox1.Size                    = new System.Drawing.Size(120, 16);
     this.autoCompleteTextBox1.TabIndex                = 0;
     this.autoCompleteTextBox1.SizeChanged            += new System.EventHandler(this.TextBox_SizeChanged);
     //
     // CoolTextBox
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.autoCompleteTextBox1);
     this.Name    = "CoolTextBox";
     this.Padding = new System.Windows.Forms.Padding(4);
     this.Size    = new System.Drawing.Size(128, 22);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #2
0
        private void TextBox_SizeChanged(object sender, EventArgs e)
        {
            AutoCompleteTextBox tb = sender as AutoCompleteTextBox;

            Height = tb.Height + 8;
        }
Example #3
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.autoCompleteTextBox1 = new RiskApps3.View.Common.AutoSearchTextBox.AutoCompleteTextBox();
     this.SuspendLayout();
     //
     // autoCompleteTextBox1
     //
     this.autoCompleteTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.autoCompleteTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.autoCompleteTextBox1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.autoCompleteTextBox1.Location = new System.Drawing.Point(4, 4);
     this.autoCompleteTextBox1.Name = "autoCompleteTextBox1";
     this.autoCompleteTextBox1.PopupBorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.autoCompleteTextBox1.PopupOffset = new System.Drawing.Point(12, 4);
     this.autoCompleteTextBox1.PopupSelectionBackColor = System.Drawing.SystemColors.Highlight;
     this.autoCompleteTextBox1.PopupSelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.autoCompleteTextBox1.PopupWidth = 120;
     this.autoCompleteTextBox1.Size = new System.Drawing.Size(120, 16);
     this.autoCompleteTextBox1.TabIndex = 0;
     this.autoCompleteTextBox1.SizeChanged += new System.EventHandler(this.TextBox_SizeChanged);
     //
     // CoolTextBox
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.autoCompleteTextBox1);
     this.Name = "CoolTextBox";
     this.Padding = new System.Windows.Forms.Padding(4);
     this.Size = new System.Drawing.Size(128, 22);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of <see cref="WinHook"/>
 /// </summary>
 /// <param name="tbox">The <see cref="AutoCompleteTextBox"/> the hook is running for.</param>
 public WinHook(AutoCompleteTextBox tbox)
 {
     tb = tbox;
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of <see cref="WinHook"/>
 /// </summary>
 /// <param name="tbox">The <see cref="AutoCompleteTextBox"/> the hook is running for.</param>
 public WinHook(AutoCompleteTextBox tbox)
 {
     tb = tbox;
 }