Hi ForstMeier,
Thank you for your update.
Query: As long that there is no VisualStyle is set, you can't see the BachStage Tab. Selecting a Theme with the Combobox, the BackStage Tab get's visibel..
We have tried to reproduce the reported behavior "Backstage is not visible with no visual style is set" with your sample. However the Backstage is not supported in default theme and it is supported from Office2010 and latest themes. However on analyzing your sample, we could found that you are applying the MaterialLight theme in RibbonWindow at startup of application, but it is not applied in UI. So on further analyzing, you are merging the converter class in Resource dictionary and it implied it applying the empty dictionary in sample level as in the following code:
Code:
|
<syncfusion:RibbonWindow.Resources>
<ResourceDictionary>
<local:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
<local:Bool2GridWidthConverter x:Key="GridWidthConverter"/>
</ResourceDictionary>
</syncfusion:RibbonWindow.Resources>
|
So only the MaterialLight theme is not applied properly at startup of application. However if you are trying to refer the converter class in your sample, we would request you to just set this code in Resources and not in ResourceDictionary to apply the respective theme correctly,as shown in following code.
|
<syncfusion:RibbonWindow.Resources>
<local:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
<local:Bool2GridWidthConverter x:Key="GridWidthConverter"/>
</syncfusion:RibbonWindow.Resources>
|
Screenshot:
Query : It sounds very good that there are rumours to implement the BachSagePrintPreview..Let me know when i can get a Preview.
We have added it our feature request list and currently we don't have immediate plan for this. It will be included in our any of our upcoming release and update you once it get implemented. Please track the status of this feedback using feedback link:
Please try this suggestion and let us know if it is helpful.
Regards,
Vijayalakshmi VR