BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
<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
};
} |