Hi,
I have a data grid with two GridTextColumns like:
<syncfusion:GridTextColumn MappingName="X" AllowSorting="False" CellStyle="{StaticResource gridCellStyle}"/>
I've set "AllowEditing" to true on the grid, and I've set the cells to have a smaller than standard font using:
<Style x:Key="gridCellStyle" TargetType="syncfusion:GridCell">
<Setter Property="FontFamily" Value=" Segoe UI" />
<Setter Property="FontSize" Value="12" />
</Style>
When I edit a cell, the text edit box uses a larger font than the one I'm using for the cells. It's not a big problem, because the text is still perfectly legible. However I'd like to use the same font for the cell and the edit field if possible. Is there a way to set the font of the text edit box?