few days ago I created some buttons and added them to existing toolbars like this way:
Code: Select all
Stimulsoft.Report.Design.Toolbars.StiStandardToolbarService.GetService().AddToolButton("Clear", OnClearClick);
private void OnClearClick(object sender, EventArgs e)
{
stiReport.Pages[0].Components.Clear();
stiReport.Designer.Refresh();
}
Now i wonder if is it posible to create a new toolbar and add my own buttons on it.
Thank You.