Nik,
Thank you for bringing this issue to our attention. I was able to verify the condition and have filed a bug-report. The problem will be fixed for the forthcoming release of Essential Tools RC2.
For the time being, you can workaround the condition by toggling the statusbar's Dock property before showing/hiding it. The following code should give you an idea,
if(this.statusBar1.Visible == true)
{
this.statusBar1.Hide();
this.statusBar1.Dock = DockStyle.None;
}
else
{
this.statusBar1.Show();
this.statusBar1.Dock = DockStyle.Bottom;
}
Thanks,
Prakash
Syncfusion