Page 1 of 1

Hide buttons and menus in wpf viewr

Posted: Thu Aug 16, 2012 5:45 pm
by sri
We don't want our customer to do following in the wpf vierwr.

1) Open button
2) Restrict save as options

How do I do this?

Re: Hide buttons and menus in wpf viewr

Posted: Fri Aug 17, 2012 3:11 pm
by Ivan
Hello,

You can use the following static properties:

Code: Select all

StiOptions.Viewer.Windows.ShowOpenButton = false;
StiOptions.Viewer.Windows.ShowSaveButton = false;
Thank you.