https://bugzilla.novell.com/show_bug.cgi?id=325264#c1


Everaldo Canuto <[EMAIL PROTECTED]> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |[EMAIL 
PROTECTED]




--- Comment #1 from Everaldo Canuto <[EMAIL PROTECTED]>  2007-10-25 13:56:32 
MST ---
Sample code from .NET Reflector:

protected override void OnSizeChanged(EventArgs e)
{
        this.acceptButton.Top = this.ClientSize.Height - 10
                - this.acceptButton.Height;
        this.acceptButton.Left = this.ClientSize.Width - 10
                - this.acceptButton.Width - 5 - this.cancelButton.Width;

        this.cancelButton.Top = this.ClientSize.Height - 10
                - this.cancelButton.Height;
        this.cancelButton.Left = this.ClientSize.Width - 10
                - this.cancelButton.Width;

        this.toTextBox.Width = this.ClientSize.Width -
        this.toTextBox.Left - 10;

        this.fromTextBox.Width = this.ClientSize.Width -
        this.fromTextBox.Left - 10;

        this.subjectTextBox.Width = this.ClientSize.Width -
        this.subjectTextBox.Left - 10;

        this.messageTextBox.Width = this.ClientSize.Width -
        this.messageTextBox.Left - 10;
        this.messageTextBox.Height = this.acceptButton.Top -
        this.messageTextBox.Top - 10;

        base.OnSizeChanged(e);
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to