Hello Team Syncfusion,
I have a binding problem with the NavigationItem in the SfNavigationDrawer. Above the item everything works fine. But as soon as I bind from the ViewModel to the NavigationItem.Header, it is not valid.
View
<Grid>
<Button Content="{Binding IsWorking}">
</Button>
<syncfusion:SfNavigationDrawer x:Name="NavigationDrawer" DisplayMode="Expanded" Grid.Column="0">
<syncfusion:NavigationItem
Header="{Binding IsWorking}"
IsSelected="True"
IsExpanded="True">
<syncfusion:NavigationItem
Header="{Binding IsNotWorking}"
DataContext="NavigationBarDataContext">
</syncfusion:NavigationItem>
</syncfusion:NavigationItem>
</Grid>
ViewModel
public class NavigationBarViewModel : NotifyingObject
{
public string IsWorking { get; } = "Yes";
public string IsNotWorking { get; } = "No";
}