Page 1 of 1

Disabling Quick-Access toolbar-Save

Posted: Thu Mar 12, 2015 9:42 am
by Tobias
I have a hard time to customize the designers "save-behaviour" the way I want it to.

I'm doing

Code: Select all

            StiOptions.Designer.MainMenu.ShowFileReportSaveAs = false;
            StiOptions.Designer.MainMenu.ShowFileReportSave = false;
            StiOptions.Designer.MainMenu.ShowFileFormNew = false;
            StiOptions.Designer.MainMenu.ShowFileReportOpen = false;

            StiOptions.Designer.Ribbon.ShowMainMenuReportSaveAs = false;
            StiOptions.Designer.Ribbon.ShowMainMenuReportSave = false;
            StiOptions.Designer.Ribbon.ShowMainMenuNew = false;
            StiOptions.Designer.Ribbon.ShowMainMenuReportOpen = false;

...but still see the save button in the Quick Access toolbar.

Re: Disabling Quick-Access toolbar-Save

Posted: Thu Mar 12, 2015 10:53 am
by HighAley
Hello.

It is only possible to hide the whole Quick Access toolbar from code with next property:

Code: Select all

StiRibbonDesignerUserControl.ShowQuickToolbar
How do you run the Designer?

Thank you.