Dear Stimulsoft,
In the latest demo of the Silverlight Clientyou have a Design report button (ShowDesignButton). Is there an options to turn this on or is it a customized (If so can you share the code)
Kind Regards
ShowDesignButton
Re: ShowDesignButton
Hello.
We didn't exactly understand your problem.
Please, describe it more detailed.
Here is our code:
Thank you.
We didn't exactly understand your problem.
Please, describe it more detailed.
Here is our code:
Code: Select all
StiToolBar toolBar = new StiToolBar();
toolBar.Height = 28;
toolBar.SetValue(DockPanel.DockProperty, Dock.Right);
toolBar.Margin = new Thickness(4, 2, 2, 2);
#region buttonDesign
RibbonButton buttonDesign = new RibbonButton();
buttonDesign.Content = "Design";
buttonDesign.MinWidth = 130;
buttonDesign.Height = 24;
#endregion
toolBar.Items.Add(buttonDesign);
this.viewerControl.ToolbarPanel.Children.Insert(0, toolBar);