Skip to content

Instantly share code, notes, and snippets.

@kindohm
Created December 2, 2010 14:22
Show Gist options
  • Save kindohm/725364 to your computer and use it in GitHub Desktop.
Save kindohm/725364 to your computer and use it in GitHub Desktop.
Simple Slider
<phone:PhoneApplicationPage
x:Class="WindowsPhoneApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
>
<Grid x:Name="LayoutRoot" Background="Transparent">
<Slider
Minimum="0"
Maximum="100"
Value="50"
Width="400"
/>
</Grid>
</phone:PhoneApplicationPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment