I have a Windows 8.1 Application
I am using WinRT Xaml Toolkit to bind my IsSelected Property to my ViewModel as the Binding is supported out of the box.
I have included the following Namespace
xmlns:Extensions="using:WinRTXamlToolkit.Controls.Extensions"
Here is the ListBoxItem of my XAML
<ListBoxItem Extensions:ListBoxItemExtensions.IsSelected="{Binding MyBool, Mode=TwoWay}">
<TextBlock Text="MyText" />
</ListBoxItem>
However I am unable to bind it TwoWay, the binding is working only from ViewModel -> View.
Is this a limitation of the Extension. If yes how do I achieve two way binding?
I would be very glad if someone can point me in the right direction. Thanks in Advance.