Page 1 of 1
Customize About Form in RibbonDesigner
Posted: Tue Oct 25, 2011 2:24 pm
by DJKrudo
Hi.
How can I customize the about-help button in RibbonDesigner to show my own Form in VB.NET winforms?
Thanks
Customize About Form in RibbonDesigner
Posted: Tue Oct 25, 2011 3:00 pm
by DJKrudo
I answer to myself:
!!! You must do this before create the designer !!!
Dim MainMenuService As StiMainMenuService = CType(StiConfig.Services.GetService(GetType(StiMainMenuService)), StiMainMenuService)
MainMenuService.AboutForm = New MyAboutForm
Customize About Form in RibbonDesigner
Posted: Wed Oct 26, 2011 2:35 am
by HighAley
Hello.
DJKrudo wrote:I answer to myself:
!!! You must do this before create the designer !!!
Dim MainMenuService As StiMainMenuService = CType(StiConfig.Services.GetService(GetType(StiMainMenuService)), StiMainMenuService)
MainMenuService.AboutForm = New MyAboutForm
Thank you for sharing your experience with other users.