我有telerik消息框,在我的Windows应用程序messagebox.show()中加载启动表单后以设计器模式显示弹出窗口,但在此之前它会弹出一些沉闷的主题。我要做的就是
RadMessageBox.Show(this, "Body", "header", MessageBoxButtons.OK, RadMessageIcon.Info);
在我的 Program.cs 中显示,这应该是 iwindows32window 类型。任何帮助将不胜感激
static void Main()
{//messagebox here displays with dull theme
Application.Run(new Login());
//messagebox here displays with original theme
}