This question is locked. New answers and comments are not allowed.
I am trying to create a button in a data bound coulumn of a gridview. But the issue is that the image is not coming inside the button
<telerik:GridViewColumn Width="40" TextAlignment="Left"> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <telerik:RadButton x:Name="btnDel" IsEnabled="{Binding flag,Converter={StaticResource ButtonEnableConvertor}}" Command="telerik:RadGridViewCommands.Delete" CommandParameter="{Binding}" Click="btnDel_Click" HorizontalAlignment="Left" VerticalAlignment="Stretch" Width="37" Height="25" Margin="-5,0,0,0" CornerRadius="5"> <Image Source="/Includes/btnDel.png" Height="20" Width="30" /> </telerik:RadButton> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewColumn>