Page 1 of 1

Viewer-control (Wpf and Ribbon)

Posted: Thu Jan 17, 2013 9:19 pm
by RDR_Norkart
I can create a StiWpfDesignerControl (with Ribbon) and put the control in my own window.
Like this:

_designerControl = new StiWpfDesignerControl();
MyGrid.Children.Add(_designerControl);

Great!

But...
Is it possible to create a Viewer-control (Wpf and Ribbon) and put the control in my own window as well?
I see that I can get a viewer with a ToolBar, but not with a Ribbon...

Re: Viewer-control (Wpf and Ribbon)

Posted: Fri Jan 18, 2013 5:38 am
by HighAley
Hello.
RDR_Norkart wrote:Is it possible to create a Viewer-control (Wpf and Ribbon) and put the control in my own window as well?
I see that I can get a viewer with a ToolBar, but not with a Ribbon...
There is a StiWpfRibbonViewerControl with Ribbon interface.

Thank you.