Hi,
Having no success in binding to the IsMinimized and Expanded properties.
xmlns:Properties="clr-namespace:StockTraderRI.Properties"
<ribbon:Ribbon x:Name="Ribbon"
Title="Ribbon Title"
IsMinimized="{Binding Path=IsRibbonMinimized, Source={x:Static Properties:Settings.Default}, UpdateSourceTrigger=PropertyChanged}">I want to save the value to my Resource Property Settings. Here I can successfully do it with a RibbonCheckBox:
<ribbon:RibbonCheckBox x:Name="XmlFilePart"
Command="{Binding CoreFilePropertiesPart, UpdateSourceTrigger=PropertyChanged}"
SmallImageSource="Resources\SmallIcon.png"
Label="Show xml only"
IsChecked="{Binding Path=IsXmlFilePart, Source={x:Static Properties:Settings.Default}}"/>But, can't get it to work for the Ribbon root property?
Code is like a box of chocolates!...