I have a Datagrid with some DataGridTemplateColumns. One of them is for the costs (see code below). The column heading is Costs. Now I want a image at the right side of the heading Costs. How can I do that?
<DataGrid
ItemsSource="{Binding AvailableNetworkInterfaces}"
SelectedItem="{Binding SelectedItemProperty}">
<DataGrid.Columns>
<DataGridTemplateColumn Header="Costs" Width="100" x:Name="ColumnCosts">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBox Width="80" Text="{Binding Dollar, Mode=OneWay}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>