Hello!
According to demo WPF->GridView->Appearance->Data Formatting I can set DataTemplate as CellTemplate.
Everything works fine. But what should I do if I want my DataTemplate fill cell?
For example, this code will show me empty cell:
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<Grid Background="DarkMagenta"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
instead of filling all empty space.
According to demo WPF->GridView->Appearance->Data Formatting I can set DataTemplate as CellTemplate.
Everything works fine. But what should I do if I want my DataTemplate fill cell?
For example, this code will show me empty cell:
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<Grid Background="DarkMagenta"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
instead of filling all empty space.