Dear Admins.
I'm developing an application which have Parent (MDI) and some child forms.
Using Telerik UI for WinForms R2 2019 SP1.
Code for Opening the Form.
01.private void MnuItemSuppliers_Click(object sender, EventArgs e)02.{03. if (!IsFormOpen(typeof(frmSupplierList)))04. {05. CloseChildForm();06. frmSupplierList m_frmListSupplier = new frmSupplierList07. {08. Width = this.Width,09. Height = this.Height,10. MdiParent = this,11. MaximizeBox = false,12. MinimizeBox = false,13. ControlBox = false,14. WindowState = FormWindowState.Maximized15. };16. m_frmListSupplier.Show();17. }18.}
But Still i can see the ControlBox and Minimize and Maximize Buttons on the Top right Corner.
Image Attached.
When i Use the Same Coding and Properties using Standard Windows Forms. It behave like as required.
Please help what is wrong with this.