I am trying to create a view using a datagrid grid divider and a bottom bar containing some posts. Sort of:
<Grid> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="10"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <toolkit:DataGrid Grid.Row="0" {details...} /> <GridSplitter Grid.Row="1" {details...} /> <TextBox Grid.Row="2" {details...} /> </Grid>
This layout looks perfect - the grid fills most of the view, and I have a splitter to expand the text box below if necessary. The problem is that the Datagrid is getting really big and I need virtualization. Does this only work if an explicit height is given to the mesh container that I believe in?
Is there a way to get the layout I want (where the grid fills all the available space), but is virtualization also included?
Willh source share