[Mono-list] Very simple bug in Mono 2.2

Alan McGovern alan.mcgovern at gmail.com
Tue Apr 28 18:47:41 EDT 2009


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.keene at 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 at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-list/attachments/20090428/f89a1b37/attachment.html 


More information about the Mono-list mailing list