Reg : Add two checkbox in datagridview in wpf
Dear Member ,I am the new in WPF . can u tell the how to add two checkbox in the single cell .
<Window x:Class="Anyname"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Anyname"
Height="300" Width="300">
<Window.Resources>
<DataTemplate x:Key="checkBoxTemplate">
<CheckBox IsChecked="{Binding Path=Value}" IsThreeState="False"></CheckBox>
</DataTemplate>
</Window.Resources>