Advertisement
Guest User

MainPage.xaml

a guest
Feb 18th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1. <Page
  2.     x:Class="Project.MainPage"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.     xmlns:local="using:Project"
  6.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8.     mc:Ignorable="d"
  9.     Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
  10.     <StackPanel Padding="50" Background="DarkBlue">
  11.         <TextBlock Text="Password Encryption" FontSize="62" TextDecorations="Underline" />
  12.         <TextBlock Text="Enter word to encrypt:" FontSize="42" />
  13.         <TextBox x:Name="Word" />
  14.         <TextBlock Text="Encrypted" FontSize="42" />
  15.         <TextBox x:Name="Encrypted" />
  16.         <TextBlock Text="Decrypted" FontSize="42" />
  17.         <TextBox x:Name="Decrypted" />
  18.         <TextBlock Text="Converted" FontSize="42" />
  19.         <TextBox x:Name="Converted" />
  20.         <Button Content="Encrypt word" Click="EncryptButtom" Width="105" Background="Yellow" BorderBrush="Black" Margin="3"/>
  21.         <Button Content="Decrypt word" Click="DecryptButtom" Width="105" Background="Red" BorderBrush="Black" Margin="3"/>
  22.         <Button Content="Convert" Click="Convert" Width="105" Background="Green" BorderBrush="Black" Margin="3"/>
  23.  
  24.     </StackPanel>
  25. </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement