[Mono-bugs] [Bug 343971] ListBox: Pressing first character does not select item

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Dec 17 05:05:46 EST 2007


https://bugzilla.novell.com/show_bug.cgi?id=343971

User kobruleht2 at hot.ee added comment
https://bugzilla.novell.com/show_bug.cgi?id=343971#c2





--- Comment #2 from andrus moor <kobruleht2 at hot.ee>  2007-12-17 03:05:46 MST ---
This happens with any listbox probably.
Anyway, here is test case:

using System;
using System.Windows.Forms;

public class Test
{
    static void Main()
    {
        Application.Run(new Form1());
    }
}

class Form1 : Form
{
    public Form1()
    {
        listBox1 = new ListBox();
        listBox1.Items.Add("1");
        listBox1.Items.Add("2");
        listBox1.Items.Add("3");
        Controls.Add(this.listBox1);
    }

    ListBox listBox1;
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list