Completed
Last Updated: 20 Mar 2015 13:49 by ADMIN
ADMIN
Dimitar
Created on: 12 Feb 2015 08:40
Category: Form
Type: Bug Report
0
FIX. RadForm - When the forms is in MDI mode the and a child form is maximized the size of the title bar icon is wrong.
To reproduce:
public partial class Form1 : RadForm
{
    public Form1()
    {
        InitializeComponent();
        this.IsMdiContainer = true;
    }

    private void radButton1_Click(object sender, EventArgs e)
    {
        RadForm childForm = new RadForm();
      
        childForm.Text = "MDI Child " + DateTime.Now.ToShortTimeString();
        childForm.MdiParent = this;
        childForm.WindowState = FormWindowState.Maximized;
        childForm.Show();
    }
}
0 comments