[Mono-bugs] [Bug 82358][Wis] Changed - Window sizes incorrect

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Tue Aug 7 16:34:31 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 classdevelopment at a-softtech.com.

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

--- shadow/82358	2007-08-07 15:57:10.000000000 -0400
+++ shadow/82358.tmp.18779	2007-08-07 16:34:31.000000000 -0400
@@ -29,6 +29,28 @@
 None: 34px too high, 8px too wide
 FixedToolWindow: 10px too high, 2px too wide
 SizeableToolWindow: 8px too high
 
 ------- Additional Comments From rolfkvinge at ya.com  2007-08-07 15:57 -------
 Could you attach a simple test case?
+
+------- Additional Comments From ClassDevelopment at A-SoftTech.com  2007-08-07 16:34 -------
+Its really trivial:
+
+using System;
+using System.Windows.Forms;
+
+public class TestForm : Form
+{
+	public TestForm ()
+	{
+		this.Size = new System.Drawing.Size (100, 100);
+		this.FormBorderStyle = FormBorderStyle.None;
+	}
+
+	public static void Main ()
+	{
+		Application.Run (new TestForm ());
+	}
+}
+
+Replace FormBorderStyle with the other BorderStyles


More information about the mono-bugs mailing list