I have telerik messagebox,after loading startup form in my windows application messagebox.show() display popup in designer pattern but before that it popup with some dull theme.
All i want to do is to show
RadMessageBox.Show(this, "Body", "header", MessageBoxButtons.OK, RadMessageIcon.Info);
in my Program.cs,where this should be iwindows32window type.Any help would be appreciated
static void Main()
{//messagebox here displays with dull theme
Application.Run(new Login());
//messagebox here displays with original theme
}