Skip to content

Instantly share code, notes, and snippets.

@wtuts
Last active August 29, 2015 14:03
Show Gist options
  • Save wtuts/afc5cb7195deb25a48d5 to your computer and use it in GitHub Desktop.
Save wtuts/afc5cb7195deb25a48d5 to your computer and use it in GitHub Desktop.
set lock xaml
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<StackPanel>
<CheckBox Name="applock" Foreground="Black" Background="WhiteSmoke" Content="App Lock" Checked="applock_Checked"/>
<TextBox Name="old_pin" Visibility="Collapsed" InputScope="Number" Background="WhiteSmoke" BorderBrush="Gray" BorderThickness="1" Height="84" KeyUp="txt_KeyUp"/>
<StackPanel Name="setpw" Visibility="Collapsed">
<TextBox Name="pin" InputScope="Number" Background="WhiteSmoke" BorderBrush="Gray" BorderThickness="1" Height="84" KeyUp="txt_KeyUp"/>
<TextBox Name="confirm_pin" InputScope="Number" Background="WhiteSmoke" BorderBrush="Gray" BorderThickness="1" Height="84" KeyUp="txt_KeyUp"/>
</StackPanel>
</StackPanel>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment