Hi,

Could you attach that testcase to a bug report and add a verbal description
of what exactly is wrong at http://bugzilla.novell.com . If you're really
adventurous, you could add a screenshot of what it should look like and what
it does look like (you can run mono on windows and grab both screenshots on
windows). That's the best way to get the issue fixed.

Thanks,
Alan.

On Tue, Apr 28, 2009 at 11:43 PM, LKeene <lionel.ke...@gmail.com> wrote:

>
> Consider this very simple WinForms application which executes properly in
> Microsoft .NET framework but on Mono doesn't function correctly:
>
>
> namespace BugForm
> {
>    public partial class Form1 : Form
>    {
>        public Form1()
>        {
>            InitializeComponent();
>
>            // Instantiate Panel control:
>            Panel MyPanel           = new Panel();
>            MyPanel.BackColor     = Color.Black;
>            MyPanel.Size             = new Size(100, 100);
>            MyPanel.MaximumSize = MyPanel.Size; // This line appears to be
> the culprit.
>            MyPanel.Location       = new Point(0, 0);
>            this.Controls.Add(MyPanel);
>
>            // Display Panel size in Title bar:
>            this.Text = "Height: " + MyPanel.Height.ToString() + " Width: "
> + MyPanel.Width.ToString();
>        }
>    }
> }
> --
> View this message in context:
> http://www.nabble.com/Very-simple-bug-in-Mono-2.2-tp23287498p23287498.html
> Sent from the Mono - General mailing list archive at Nabble.com.
>
> _______________________________________________
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to