I am using Devexpress winform for my project. There are three forms simply. The first is MainForm
that used MdiParent
, the second is FormArticles
that used listing articles about law into GridControl
. And the last is FormArticleView
that used viewing selected article into pdfViewer
control. I managed to use documentManager
and SplashScreenManager
while loading Mdi Child forms and articles into one of Mdi Child form FormArticles
. Here is my code:
public prjLibrary()
{
InitializeComponent();
var frm = new FormArticles{ MdiParent = this, Dock = DockStyle.Fill };
frm.Show();
}
While transition one form to another, the forms is fractured and after load it is fixed. Here is my screenshot:
And here is fixed view:
How can I fix fractured view while transition of forms?