In my custom status bar control I have a status bar panel which is added to
status bar when control is initialized
Private m_StatusBarPanel As New StatusBarPanel
Public Sub New()
Me.Panels.Add(m_StatusBarPanel)
End Sub
How can I prevent this panel from appearing in the Panels property of the
StatusBar control so that it cannot be removed from the collection?
Or is there anyway of preventing users from removing it either at design or
run time
Thanks