[Mono-bugs] [Bug 79160][Nor] New - Form icon is shown when FormBorderStyle is FixedDialog

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Fri Aug 25 09:13:34 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 gert.driesen at pandora.be.

http://bugzilla.ximian.com/show_bug.cgi?id=79160

--- shadow/79160	2006-08-25 09:13:34.000000000 -0400
+++ shadow/79160.tmp.17286	2006-08-25 09:13:34.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 79160
+Product: Mono: Class Libraries
+Version: 1.1
+OS: GNU/Linux [Other]
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: peter at novonyx.com                            
+ReportedBy: gert.driesen at pandora.be               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Form icon is shown when FormBorderStyle is FixedDialog
+
+On Mono/Unix, a form icon is shown even if the FormBorderStyle is set to 
+FixedDialog (or even None).
+
+To reproduce, compile and run the following code snippet:
+
+using System;
+using System.Windows.Forms;
+
+public class Test {
+  static void Main () {
+    Application.Run (new MainForm ());
+  }
+}
+
+public class MainForm : Form {
+  public MainForm () {
+    FormBorderStyle = FormBorderStyle.FixedDialog;
+  }
+}


More information about the mono-bugs mailing list