Unplanned
Last Updated: 11 Sep 2018 11:50 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 06 Sep 2018 05:20
Category: Form
Type: Bug Report
1
FIX. RadForm - extra space is available at bottom and right sides of RadForm when it is autosized
To reproduce: run the sample project. It ends up leaving significant blank space on the right and the bottom, whereas the normal MS Form does NOT do this and works right.

Workaround: in the Load event you can adjust the size with 10/15 px by setting the MaximumSize:

        private void Form1_Load(object sender, EventArgs e)
        {
            this.MaximumSize = new Size(this.Size.Width - 15, this.Size.Height - 10);
        }
0 comments