Goodmorning,
we are using wpf datagrid 3 months now and we are very satisfied with the perfomance and all it's goodies!!
The problem we are facing is that we have a slider bound to the FontSize of the DataGridControl and everything works well except of the Height of the DataRow, which is constant 30, and the content of the cells is hiding when the value becomes very big! When i try include a resource dictionary with the Style of Datarow and a setter for MaxHeight it gets the value, from the visualizer of Visual Studio 2010 i can see that the style value of MaxHeight is 100 but it keeps the MaxHeight 30!! The FilterRow behaves normally, when i change the font the Height resizes...So our conclusion is that something overrides value 100 with the value of 30!Is it anything that we should do??My code is that :
<xc:DataGridControl Grid.Row="1" Width="Auto" Name="_DataGridControl"
TextElement.FontSize="{Binding Path=FontSize, ElementName=_ScaleFontContent, Mode=OneWay}"
AutoCreateColumns="False" Margin="2" ItemScrollingBehavior="Immediate" AllowDetailToggle="True"
NavigationBehavior="RowOnly" ReadOnly="False" CellEditorDisplayConditions="RowIsBeingEdited, RowIsCurrent"
EditTriggers="ClickOnCurrentCell, SingleClick, ActivationGesture">
<xc:DataGridControl.Resources>
<Style x:Key="{x:Type xc:ScrollTip}" TargetType="xc:ScrollTip">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
</xc:DataGridControl.Resources>
<xc:DataGridControl.View>
<xc:TableflowView ShowRowSelectorPane="True" x:Name="_TableflowView" ColumnStretchMinWidth="10"
ShowFixedColumnSplitter="True" RowFadeInAnimationDuration="300"
ScrollingAnimationDuration="750" ShowScrollTip="True" AllowRowResize="True">
<xc:TableflowView.FixedHeaders>
<DataTemplate>
<xc:FilterRow>
</xc:FilterRow>
</DataTemplate>
</xc:TableflowView.FixedHeaders>
</xc:TableflowView>
</xc:DataGridControl.View>
</xc:DataGridControl>
Thanks in advance :)