Your XAML is not working. Please fix this.
In any case, I took some of your code and made some minor changes, so it compiled, and I get a vertical separator:
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="5"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="70*"/> <RowDefinition Height="30*"/> </Grid.RowDefinitions> <Button>Test column 0</Button> <GridSplitter Grid.Column="1" Width="5" HorizontalAlignment="Stretch" Background="#FFFFFF"/> <Button Grid.Column="2">Test column 2</Button> </Grid>
Björn source share