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=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 [EMAIL PROTECTED] 2007-08-07 15:57 ------- Could you attach a simple test case? + +------- Additional Comments From [EMAIL PROTECTED] 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 _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
