https://bugzilla.novell.com/show_bug.cgi?id=349174
Summary: ListBox: Focused state not visible
Product: Mono: Class Libraries
Version: 1.2.6
Platform: Other
OS/Version: All
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Windows.Forms
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
QAContact: [EMAIL PROTECTED]
Found By: ---
To reproduce, run the code.
Expected:
First item (1) borders should marked with dotted rectangle
Observed:
Focus not indicated
Environment:
1.2.6 preview 2
NET 2 profile
System.Drawing from Nov 24, 2007 monocharge
Windows XP
VCSE 2008
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.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs