WPF DataGrid - Stretch Row Details Vertically
WPF
1
Posts
1
Posters
1
Views
1
Watching
-
I've got Row Details section in a DataGrid. The DataGrid's width is set to 1500, yet the row details content stretches off the right side of the grid. Here's all the XAML. [Here's a screen shot](https://1drv.ms/u/s!AjBmoYAYz\_v2hAfyFayYe\_szmYci?e=ULiK1M) How do I make the Row Details content wrap?
<Style.Triggers> <DataTrigger Binding="{Binding Status}" Value="Removed"> <Setter Property="FontStyle" Value="Italic" /> <Setter Property="Foreground" Value="LightGray" /> </DataTrigger> </Style.Triggers> <Setter Property="BorderBrush" Value="SteelBlue" /> <Setter Property="BorderThickness" Value="0,0,0,1" /> <Setter Property="Height" Value="{x:Static sys:Double.NaN}"/> <Setter Property="IsReadOnly" Value="True" /> <Style.Triggers</x-turndown>