[Mono-bugs] [Bug 78547][Nor] New - Flat Toolbar keyboard navigation
is not implemented
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed May 31 04:04:52 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=78547
--- shadow/78547 2006-05-31 04:04:52.000000000 -0400
+++ shadow/78547.tmp.26341 2006-05-31 04:04:52.000000000 -0400
@@ -0,0 +1,50 @@
+Bug#: 78547
+Product: Mono: Class Libraries
+Version: 1.1
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: peter at novonyx.com
+ReportedBy: atsushi at ximian.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Flat Toolbar keyboard navigation is not implemented
+
+On .NET Flat ToolBar (Appearance = ToolBarAppearance.Flat) can be navigated
+throught cursor keys: Keys.Left or Keys.Down to move forward, and
+Keys.Right or Keys.Up to move backward.
+
+Easy-to-repro example:
+
+using System;
+using System.Windows.Forms;
+
+public class Test : Form
+{
+ public static void Main ()
+ {
+ Application.Run (new Test ());
+ }
+
+ public Test ()
+ {
+ ToolBar tb = new ToolBar ();
+ tb.Appearance = ToolBarAppearance.Flat;
+ tb.Buttons.Add (new ToolBarButton ("TEST1"));
+ tb.Buttons.Add (new ToolBarButton ("TEST2"));
+ tb.Buttons.Add (new ToolBarButton ("TEST3"));
+ Controls.Add (tb);
+ ActiveControl = tb;
+ }
+}
+
+
+Additional Information:
+
+It also affects on PropertyGrid keyboard navigation.
More information about the mono-bugs
mailing list