Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
UltraStatusBar: Handling EnabledChanged for Button
posted

I am removing some buttons from the form UI and replacing them with panels on an UltraStatusBar.  I have set the panels Style = Button.

For the Windows command buttons, I currently use

Private Sub cmdAdd_EnabledChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdAdd.EnabledChanged
    ' add code here.
End Sub

How do I get the same functionality with the button-style panels?

 TIA,

Dave