Hello,
i try to add FooterItems with mvvm wich are binded to
FooterItems, but no items are displayed.
Other Items in the List
"Pages", with same model is displayed wich is binded to
ItemsSource.
The SubItems need other Properies?
I dont see any binding issues to the output window.
Any help please.
this List of Items is my ViewModel.
public List<ViewModelBase> FooterPages { get; set; } = new();
the model have following properties.
public string Titel { get; set; }
public object Icon { get; }
public object ItemType { get; private set; }
the View
<syncfusion:SfNavigationDrawer
Background="GhostWhite"
DisplayMode="Expanded"
ExpandedModeWidth="180"
ExpandedModeThresholdWidth="600"
ItemsSource="{Binding Pages}"
IconMemberPath="Icon"
FooterItems="{Binding FooterPages}"
DisplayMemberPath="Titel">
<
syncfusion:SfNavigationDrawer
/>