C# ComboBox hijacks the focus

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • latortugamorada
    New Member
    • Jun 2007
    • 6

    C# ComboBox hijacks the focus

    I have searched high and low for a solution to this incredibly vexing problem and am at the brink of insanity/desperation/severe upsettedness. I have a problem with ComboBoxes in .NET. Once I click on the ComboBox (to choose from the dropdown list), the control stays focused/selected/active with no apparent way of deactivating it. I've created a small program that demonstrates my problem. If you comment out the lines pertaining to the comboBox1, you'll notice that the form successfully receives all keyboard input and displays it in label1. But when you add the code for comboBox1, there's no way to get the focus off of the control, so the keyboard events are never raised for the Form and nothing works at all. So the big question is how to I get the keyboard focus away from the ComboBox? As you can see, I've tried a few different methods already.

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    
    namespace WindowsApplication1
    {
        public partial class Form1 : Form
        {
            ComboBox comboBox1;
            Label label1;
    
            public Form1()
            {
                InitializeComponent();
    
                comboBox1 = new ComboBox();
                comboBox1.Items.Add("one");
                comboBox1.Items.Add("two");
                comboBox1.Items.Add("three");
                comboBox1.Location = new Point(10, 12);
                comboBox1.SelectedIndexChanged += new EventHandler(comboBox1_SelectedIndexChanged);
                this.Controls.Add(comboBox1);
    
                label1 = new Label();
                label1.Location = new Point(139, 15);
                label1.Text = "a";
                this.Controls.Add(label1);
            }
    
            private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
            {
                comboBox1.SelectNextControl(this, true, true, false, false);
                this.Focus();
                //this.SelectNextControl(this, true, true, false, false);
                //comboBox1.SelectNextControl(this, true, true, false, false);
                //this.Select();
            }
    
            private void Form1_KeyPress(object sender, KeyPressEventArgs e)
            {
                label1.Text = e.KeyChar.ToString();
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                comboBox1.SelectedIndex = 0;
            }
    
        }
    }
  • Curtis Rutland
    Recognized Expert Specialist
    • Apr 2008
    • 3264

    #2
    Try this.Focus();
    That should bring the focus to the form rather than the control. I don't have time to test it out right now, but let us know if it works.

    Comment

    • Plater
      Recognized Expert Expert
      • Apr 2007
      • 7872

      #3
      The combobox is probably the only control able to actually receive a focus transfer, so you can't remove focus from it by normal means.
      If the this.focus() doesn't work, you can try a few other sneaky tricks.

      Create a mock label that looks like a button (do not use a button, as it will then take the focus) use the onclick even of the label to disable/enable your combobox. If the combox is disabled, it cannot have the focus and focus will then be forced to another control (most likely the form itself)
      You may have to tweek that idea a bit to get it to work.

      I also think there is a setting somewhere that tells the form to *always* receive the keyboard events, regardless of if it has focus or not

      Comment

      • latortugamorada
        New Member
        • Jun 2007
        • 6

        #4
        Originally posted by Plater
        The combobox is probably the only control able to actually receive a focus transfer, so you can't remove focus from it by normal means.
        If the this.focus() doesn't work, you can try a few other sneaky tricks.

        Create a mock label that looks like a button (do not use a button, as it will then take the focus) use the onclick even of the label to disable/enable your combobox. If the combox is disabled, it cannot have the focus and focus will then be forced to another control (most likely the form itself)
        You may have to tweek that idea a bit to get it to work.

        I also think there is a setting somewhere that tells the form to *always* receive the keyboard events, regardless of if it has focus or not
        If I try

        label1.Focus()

        I can get the focus off of the ComboBox, but it still doesn't give my Form the ability to receive keyboard input again. Is there any way to actually give the focus back to a Form?

        (And no, this.Focus() and this.Select() do not work.)

        Thanks for your help.

        Comment

        • Plater
          Recognized Expert Expert
          • Apr 2007
          • 7872

          #5
          Hmm if this.Focus() didn't work (assuming in context "this" was refering to the form) then I don't know of any other method besides the other 2 ways I mentioned

          Comment

          • flagg
            New Member
            • Mar 2009
            • 1

            #6
            Try setting TabIndex, i.e.

            this.comboBox1. TabIndex = 1;
            this.label1.Tab Index = 2;

            Comment

            Working...