确保你的VBA项目引用了"Microsoft Office XX.0 Object Library"
在类模块中定义一个公共变量 `Private rbE As IRibbonExtensibility`;
然后添加一个公共函数:
Public Function GetCustomUI(ribbonID As String) As String
Dim xml As String
' 在这里编写你的自定义UI的XML代码,可以使用RibbonX语法
xml = "<customUI>...</customUI>"
GetCustomUI = xml
End Function
在主代码模块或其他模块中创建一个实例,并调用GetCustomUI方法:
Dim ribbonHandler As New RibbonHandler
Dim xml As String
' 调用GetCustomUI方法获取自定义UI的XML代码
xml = ribbonHandler.GetCustomUI(RibbonID)
' 使用获取到的XML代码来加载自定义UI
ThisWorkbook.CustomUI = xml