i'd like to customize the toolbar of the WPF Viewer.
We used the following code:
Code: Select all
Button myButton = new Button()
{
Content="My cool button"
};
ToolBar tb = viewerControl1.FindToolBar;
tb.Items.Add(myButton);
Is there a way to achieve this?
Thank you.