[Mono-bugs] [Bug 81198][Nor] New - [Windows] WM_SHOWWINDOW not being called
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Mar 20 11:23:14 EDT 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 monkey at jpobst.com.
http://bugzilla.ximian.com/show_bug.cgi?id=81198
--- shadow/81198 2007-03-20 10:23:14.000000000 -0500
+++ shadow/81198.tmp.4864 2007-03-20 10:23:14.000000000 -0500
@@ -0,0 +1,39 @@
+Bug#: 81198
+Product: Mono: Class Libraries
+Version: 1.2
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com
+ReportedBy: monkey at jpobst.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: [Windows] WM_SHOWWINDOW not being called
+
+In the following test program, WM_SHOWWINDOW never gets called, so the
+button is never made visible. Is currently breaking PDN on windows.
+
+using System;
+using System.Windows.Forms;
+
+class TestForm : Form
+{
+ static void Main ()
+ {
+ Application.Run (new TestForm ());
+ }
+
+ public TestForm ()
+ {
+ Console.WriteLine (this.Handle);
+ this.WindowState = FormWindowState.Maximized;
+ Button b = new Button ();
+ this.Controls.Add (b);
+ }
+}
More information about the mono-bugs
mailing list