[Mono-bugs] [Bug 80600][Nor] New - StatusBar displays its Text even if ShowPanels is set to true
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Jan 24 10:00:53 EST 2007
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 georgegiolfan at yahoo.com.
http://bugzilla.ximian.com/show_bug.cgi?id=80600
--- shadow/80600 2007-01-24 10:00:53.000000000 -0500
+++ shadow/80600.tmp.19286 2007-01-24 10:00:53.000000000 -0500
@@ -0,0 +1,40 @@
+Bug#: 80600
+Product: Mono: Class Libraries
+Version: 1.2
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com
+ReportedBy: georgegiolfan at yahoo.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: StatusBar displays its Text even if ShowPanels is set to true
+
+Steps to reproduce the problem:
+using System.Windows.Forms;
+class TestForm : Form {
+ static void Main() {
+ Application.Run(new TestForm());
+ }
+ public TestForm() {
+ StatusBar s = new StatusBar();
+ s.ShowPanels = true;
+ s.Text = "Test";
+ Controls.Add(s);
+ }
+}
+
+Actual Results:
+The text is displayed.
+
+Expected Results:
+The text is not displayed.
+
+How often does this happen?
+Always (on the SVN version).
More information about the mono-bugs
mailing list