MVVM Light Commands within an ItemsControl
I'm just trying my hand at WP7 dev using the MVVM Light framework. I'm trying to fire a button command inside an ItemsControl, essentialy it's a list of cars and I'd like each element to have an edit button. The Relevant piece of the View: <ItemsControl ItemsSource="{Binding MyCars}" > <ItemsControl.ItemTemplate> <DataTemplate> <Grid x:Name="CarViewGrid"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" MinWidth="100" /> <ColumnDefinition Width="Auto" MinWidth="302"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto" MinHeight="40" /> <RowDefinition Height=