Using events in VB.NET
From Ribbon Commander Documentation
Background
You can subscribe to events of Dynamic RibbonX controls by using .NET events or .NET delegates. Here, we show how it can be done by using .NET events. In general you need to take the following steps:
- Declare a member variable of the events source control type WithEvents
- Use Visual Studio to insert the desired event stubs
Example
In this example we will set up a UI that contains an rxButton control and subscribe to all its events.
- Add a new class to your project and name it ButtonEventsUI
- Add the following code to your class
Public Class ButtonEventsUI
Private _customUI As rxCustomUI
Private WithEvents _myButton As rxButton
Public Sub New()
' Instantiate a new rxCustomUI in context 'my_vb_context'
_customUI = rxCustomUI.create("my_vb_context", "My VB.NET context!")
With _customUI
' Clear old state in the context
.clear()
' Add a new tab and label it
With .ribbon.tabs.add(New rxTab())
.label = "My VB Tab"
' Add a new group and label it
With .groups.add(New rxGroup())
.label = "My VB Group"
'Add a new button an label it
_myButton = .buttons.add(New rxButton)
End With
End With
' Render the UI
.refresh()
End With
End Sub
Private Sub _myButton_OnActionEvent(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl) Handles _myButton.OnActionEvent
System.Diagnostics.Debug.Print("_myButton_OnActionEvent clicked")
MessageBox.Show("Hello from VB.NET")
End Sub
Private Sub _myButton_OnGetDescription(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef description As String) Handles _myButton.OnGetDescription
System.Diagnostics.Debug.Print("_myButton_OnGetDescription clicked")
description = "My button description"
End Sub
Private Sub _myButton_OnGetEnabled(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef enabled As Boolean) Handles _myButton.OnGetEnabled
System.Diagnostics.Debug.Print("_myButton_OnGetEnabled clicked")
enabled = True
End Sub
Private Sub _myButton_OnGetImage(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef imageDispOrImageMso As Object) Handles _myButton.OnGetImage
System.Diagnostics.Debug.Print("_myButton_OnGetImage clicked")
imageDispOrImageMso = "AccessTableAssets"
End Sub
Private Sub _myButton_OnGetKeytip(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef keytip As String) Handles _myButton.OnGetKeytip
System.Diagnostics.Debug.Print("_myButton_OnGetKeytip clicked")
keytip = "K"
End Sub
Private Sub _myButton_OnGetLabel(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef label As String) Handles _myButton.OnGetLabel
System.Diagnostics.Debug.Print("_myButton_OnGetLabel clicked")
label = "My VB Button"
End Sub
Private Sub _myButton_OnGetScreentip(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef screentip As String) Handles _myButton.OnGetScreentip
System.Diagnostics.Debug.Print("_myButton_OnGetScreentip clicked")
screentip = "My button screentip"
End Sub
Private Sub _myButton_OnGetShowImage(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef showImage As Boolean) Handles _myButton.OnGetShowImage
System.Diagnostics.Debug.Print("_myButton_OnGetShowImage clicked")
showImage = True
End Sub
Private Sub _myButton_OnGetShowLabel(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef showLabel As Boolean) Handles _myButton.OnGetShowLabel
System.Diagnostics.Debug.Print("_myButton_OnGetShowLabel clicked")
showLabel = True
End Sub
Private Sub _myButton_OnGetSize(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef size As LogismiX.Interop.DynamicRibbonX.RibbonControlSize) Handles _myButton.OnGetSize
System.Diagnostics.Debug.Print("_myButton_OnGetSize clicked")
size = RibbonControlSize.RibbonControlSizeRegular
End Sub
Private Sub _myButton_OnGetSupertip(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef supertip As String) Handles _myButton.OnGetSupertip
System.Diagnostics.Debug.Print("_myButton_OnGetSupertip clicked")
supertip = "My button supertip"
End Sub
Private Sub _myButton_OnGetVisible(control As LogismiX.Interop.DynamicRibbonX.IRibbonControl, ByRef visible As Boolean) Handles _myButton.OnGetVisible
System.Diagnostics.Debug.Print("_myButton_OnGetVisible clicked")
visible = True
End Sub
End Class
- Modify class ThisAddin in ThisAddin.vb as follows