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=79670

--- shadow/79670        2006-10-15 10:25:08.000000000 -0400
+++ shadow/79670.tmp.24646      2006-10-15 10:25:08.000000000 -0400
@@ -0,0 +1,40 @@
+Bug#: 79670
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: Windows XP SP1
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Major
+Component: Windows.Forms
+AssignedTo: [EMAIL PROTECTED]                            
+ReportedBy: [EMAIL PROTECTED]               
+QAContact: [EMAIL PROTECTED]
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Form.WindowState = Maximized doesn't work
+
+The following code should produce a maximized form. Instead a normal form
+is shown. Using mono 1.1.18, Windows XP SP1.
+
+Reproduce code:
+using System;
+using System.Windows.Forms;
+
+namespace MonoTest32
+{
+    class Form1 : Form
+    {
+        static void Main()
+        {
+            Application.Run(new Form1());
+        }
+
+        public Form1()
+        {
+            this.WindowState = FormWindowState.Maximized;
+        }
+    }
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to