I have a ListView in a WPF Application that use Dynamic Binding. I wish to insert in the cell of a row a CheckBox instead than showing a boolean value for a specific row. It should apply to all the rows and should offcourse enable me to unset and set it (it will update the object it in the code) but i can do that last part myself. I just need to figure out how to put a checkbox there.
It is possible ? Any ideas ?
Here my XAML:
<ListView Margin="385,91,12,120"
Name="lstTransactions">
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Description}"
Width="220">Description</GridViewColumn>
<GridViewColumn DisplayMemberBinding="{Binding Path=MontantEstimation, StringFormat='{}{0:C}'}"
Width="100">Estimation</GridViewColumn>
<GridViewColumn DisplayMemberBinding="{Binding Path=MontantReel, StringFormat='{}{0:C}'}"
Width="100">Réel</GridViewColumn>
<GridViewColumn DisplayMemberBinding="{Binding Compte}"
Width="120">Compte</GridViewColumn>
<GridViewColumn DisplayMemberBinding="{Binding EstVerifie}"
Width="70">Verifié ?</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
Thanks.