How to customize the Toolbar in WPF Viewer
Posted: Tue May 03, 2011 7:05 am
Hi,
i'd like to customize the toolbar of the WPF Viewer.
We used the following code:
However there is no additional Button in the Toolbar.
Is there a way to achieve this?
Thank you.
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.