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 [EMAIL PROTECTED] 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: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +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. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
