Hello, I am experiencing Binding problems with Syncfusion RibbonTab in WPF. Bindings are simply ignored on some properties. I have 7 ribbon tabs with the same caption "Home". Each one should be visible if some conditions are met. Surprisingly the bindings don't work. I made a test with the Caption property and I have the same results. For IsEnabled property, bindings work. The same Visibility and Caption bindings put in other controls such as Grid, TextBlock work, but not for
RibbonTab. Here is an example of Binding.
<syncfusion:RibbonTab Visibility="{Binding View.Sheet.Type, Converter={StaticResource SheetTypeToVisibilityConverter}, ConverterParameter=Input}"/>
By placing breakpoints in the converter code, I was able to notice that the bindings (Visibility and Caption) are NEVER analyzed. But when put on other controls they are analyzed. I got these problems on the versions 18 and 20. I haven't test on V19.
Thanks.