I am shamelessly trying to copy "someone's" idea of a MainForm.
My intention is to get rid of the MenuStrip and use the ThemedToolStrip instead. So far, so good. But now I got to the "Window" item, which will show the opened MDI windows list.
Now I would need to have a "Window" ToolStripDropDownButton to behave in the same way as the MenuStrip MdiWindowListItem. Would that be too difficult to implement?
Cheers.
#Region
'--> Cast To Base Class so we get custom properties
Dim loChild As Payroll.Base.WindowsForms.DevExMaintFormBase = CType(e.Control, System.Windows.Forms.Form)
' do anything you need to do - remove handlers update custom lists etc
#End