I cant quite figure out how to bind my list view to both properties in my ViewModel and a list in my view model.
Is it possible to override the ListViews ItemsSource and bind a Checkbox within the ListView straight to the parent ViewModel?
Something like this...
<ListView ItemsSource="{Binding Path=SomeListInViewModel}">
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<DockPanel>
<CheckBox
IsEnabled="{Binding SomePropertyInViewModel}"
IsChecked="{Binding SomePropertyInsideListObj, Mode=TwoWay}" />
</DockPanel>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>