I am working on an application to try to deal with Windows 8. I want to add a GridSplitter
to the XAML form, but the control does not seem to be available.
XAML I have
<Page x:Class="TweetiCon.BlankPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:TweetiCon"> <Grid Background="{StaticResource ApplicationPageBackgroundBrush}"> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition Width="auto"/> <ColumnDefinition/> </Grid.ColumnDefinitions> <GridSplitter Grid.Column="1" Orientation="Vertical"/> </Grid> </Page>
but the GridSpliter
element causes the application to not get complicated because
The name GridSplitter does not exist in the namespace http://schemas.microsoft.com/winfx/2006/xaml/presentation
but I'm sure it is. That it is in regular WPF applications.
What am I doing wrong?
source share