Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
625
XamDataGrid in edit mode text cut off
posted

I have a XamDataGrid which is displaying 2 columns of text. When not in edit mode the text display correctly. However, when entering edit mode by double clicking the cell the cell enters edit mode but the bottom half of the text appears cut off (see attached screenshots).

I am using the Metro theme and the XAML is as follows:

<igWPF:XamDataGrid DataSource="{Binding Path=., Mode=TwoWay}" Background="Transparent" GroupByAreaLocation="None">                                 <igWPF:XamDataGrid.FieldSettings>
<igWPF:FieldSettings AllowEdit="True" CellClickAction="SelectRecord" AllowRecordFiltering="True" FilterOperatorDefaultValue="Contains"/>                                 </igWPF:XamDataGrid.FieldSettings>
<igWPF:XamDataGrid.FieldLayouts>
<igWPF:FieldLayout>
<igWPF:FieldLayout.Settings>
<igWPF:FieldLayoutSettings AllowDelete="True" AutoGenerateFields="False" RecordSelectorLocation="None" LabelLocation="Default" SelectionTypeRecord="Extended" FilterUIType="Default"/>
<igWPF:UnboundField Binding="{Binding Path=Title, Mode=TwoWay}" Label="Title" Width="*" IsScrollTipField="True"/>
<igWPF:UnboundField Binding="{Binding Path=Description, Mode=TwoWay}" Label="Description" Width="*"/>                                                                            </igWPF:FieldLayout>
</igWPF:XamDataGrid.FieldLayouts>
</igWPF:XamDataGrid> 

 

Pictures.zip