[Mono-bugs] [Bug 78650][Min] New - [PATCH] TabControl: tab key to move to current page content

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Jun 15 03:44:16 EDT 2006


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by atsushi at ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=78650

--- shadow/78650	2006-06-15 03:44:16.000000000 -0400
+++ shadow/78650.tmp.27769	2006-06-15 03:44:16.000000000 -0400
@@ -0,0 +1,59 @@
+Bug#: 78650
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Windows.Forms
+AssignedTo: peter at novonyx.com                            
+ReportedBy: atsushi at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [PATCH] TabControl: tab key to move to current page content
+
+When TabControl has focus, we can't move into tab page content using
+keyboard. On .NET simply tab key moves into the page.
+
+Build and run below, and push tab key:
+
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+
+public class Test : Form
+{
+        public static void Main ()
+        {
+                Application.Run (new Test ());
+        }
+
+        public Test ()
+        {
+                TabControl tab = new TabControl ();
+                tab.TabPages.Add (new TabPage ("Page1"));
+                tab.TabPages.Add (new TabPage ("Page2"));
+                tab.TabPages [0].Controls.Add (new Button ());
+                Button b = new Button ();
+                b.Location = new Point (100, 0);
+                tab.TabPages [0].Controls.Add (b);
+                Controls.Add (tab);
+        }
+}
+
+
+Actual Results:
+
+nothing happens.
+
+Expected Results:
+
+The focus moves to the button.
+
+Additional Information:
+
+A fix being attached.


More information about the mono-bugs mailing list