BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
<DataTemplate x:Key="cellTemplate">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<Button Content="{Binding Path=Value,Converter={StaticResource converter}}" Width="70" Height="25" />
<TextBlock Foreground="Red"
Margin="3,0,0,0"
Text="{Binding Path=Value, Converter={StaticResource converter}}"/>
<CheckBox IsChecked="{Binding Path=Value,Converter={StaticResource converter}}"/>
</StackPanel>
</DataTemplate>
if(e.Column.MappingName=="IsClosed")
{
e.Column = new GridTemplateColumn()
{
MappingName = e.Column.MappingName,
SetCellBoundValue=true,
CellTemplate = Application.Current.FindResource("cellTemplate") as DataTemplate
};
} |