Unplanned
Last Updated: 30 Mar 2016 09:18 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 07 Apr 2015 07:34
Category: Form
Type: Bug Report
1
FIX. RadMessageBox - when the RadMessageBox.Instance.AutoSize property is set to true each subsequent showing of the dialog increases its size
To reproduce:

public Form1()
{
    InitializeComponent();

    RadMessageBox.Instance.AutoSize = true;
}

private void radButton1_Click(object sender, EventArgs e)
{
    string msg = string.Format("Test", (sender as RadButton).Name);
    RadMessageBox.Show(msg, "Error");
}

Note that the size of  RadMessageBox is adjusted automatically to display the whole content. Hence, it is not necessary to set the RadMessageBox.Instance.AutoSize property to true.


Attached Files:
0 comments