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=78868 --- shadow/78868 2006-07-15 20:38:51.000000000 -0400 +++ shadow/78868.tmp.28316 2006-07-15 20:38:51.000000000 -0400 @@ -0,0 +1,47 @@ +Bug#: 78868 +Product: Mono: Class Libraries +Version: unspecified +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Cosmetic +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Scroll bars not displayed on UserControl when Size smaller than AutoScrollMinSize + +Description of Problem: Scroll bars are not displayed on a UserControl when +its Size is smaller than its AutoScrollMinSize. On .NET Framework they are. + + +Steps to reproduce the problem: +1. Compile and run the folowing program. +using System.Drawing; +using System.Windows.Forms; +class Test: Form { + public Test() { + UserControl UserControl = new UserControl(); + Controls.Add(UserControl); + UserControl.AutoScroll = true; + UserControl.AutoScrollMinSize = new Size(200, 200); + UserControl.Size = new Size(100, 100); + } + static void Main() { + Application.Run(new Test()); + } +} + +Actual Results: +No scroll bars are displayed. + +Expected Results: +Scroll bars are displayed. + +How often does this happen? +Always. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
