Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ideaki
Created May 17, 2014 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ideaki/2e164d4caaa70eab3ea8 to your computer and use it in GitHub Desktop.
Save ideaki/2e164d4caaa70eab3ea8 to your computer and use it in GitHub Desktop.
<UserControl x:Class="ListViewAutoScroll.AutoScrollNavigationContent"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:ListViewAutoScroll"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="30"
Height="30"
IsHitTestVisible="False"
mc:Ignorable="d">
<Grid>
<Ellipse Width="30"
Height="30"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Fill="White"
Stroke="Gray"
StrokeThickness="2" />
<Ellipse Width="4"
Height="4"
Margin="13"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Fill="Gray" />
<Polygon Margin="6,3,6,0"
VerticalAlignment="Top"
Fill="Gray"
Points="9,0 18,8, 0,8" />
<Polygon Margin="6,0,6,3"
VerticalAlignment="Bottom"
Fill="Gray"
Points="0,0 18,0, 9,8" />
</Grid>
</UserControl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment