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
115
How to launch Ultragrid designer and Layout wizard programmatically.
posted

I am creating a User control containing a toolbar, an UltraWinGrid and some buttons.

I would like to add the options to display the Designer and layout wizard to the control's Smart tag items.

Like:

items.Add(New DesignerActionHeaderItem("Data Grid"))

items.Add(New DesignerActionMethodItem(Me, "ShowGridDesigner", "Design", "Data Grid", "Shows the design dialog", True))

Public Sub ShowGridDesigner()

   _myUserControl.DataUltraGrid.ShowDesigner()

End Sub

What I need, is to find a method like ShowColumnChooser but for the Designer and the Layout wizard.

Thanks in advance for your help.