Can you give an example of setting the row height please. I saw a reference to setting it in the fieldlayout but that seems to just hide the text. I have text and comboboxes in my row, can you show me how to reduce the row height while still showing the content. I'm mostly interested in removing vertical whitespace while retaining the same fontsize. Can you show an example for that please.
Thanks.
Just in case some is still looking for a solution below is what I did:
Set CellHeight="18"on FieldSettings
and add below to Grid.Resources
<Style TargetType="{x:Type igEditors:XamTextEditor}">
<Setter Property="Margin" Value="0,0,0,0"/>
<Setter Property="Padding" Value="0,0,0,0"/>
</Style>
<Style TargetType="{x:Type igEditors:XamDateTimeEditor}">
<Style TargetType="{x:Type igEditors:XamMaskedEditor}">
<Style TargetType="{x:Type igEditors:XamNumericEditor}">
<Style TargetType="{x:Type igEditors:XamCurrencyEditor}">
<Style TargetType="{x:Type igEditors:XamComboEditor}">
<Style TargetType="{x:Type igEditors:XamCheckEditor}">
A bit wierd, just for a simple thing like setting a row height but it works!
I have the same problem. I'm trying to reduce the the row height by reducing the whitespace above and below the content. I've tried playing with the style of several grid elements, but all I could achieve was that the horizontal line below cut of some of the text. How do I reduce the whitespace above the content? -> tis seems to be fixed. If I increase the height, the additional space is added below the content.
Thanks and regards,
Bettina