I have command which I am executing from my XAML (view) using below code:
<HyperlinkButton Command="{Binding DataContext.HyperlinkGoToCommand, RelativeSource={RelativeSource AncestorType=UserControl}}" CommandParameter="ABCD">
<TextBlock Text="ABCD" TextDecorations="Underline"/></HyperlinkButton>
Presently CommandParameter
pass as string and it’s working fine but I want to pass CommandParameter
as List
(single item generic list) rather than as string.