Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.67 KB | None | 0 0
  1. <Page x:Name="StartPAge" NavigationCacheMode="Enabled"
  2.    x:Class="WPStats.Start"
  3.    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.    xmlns:local="using:WPStats"
  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.  
  10.     <Page.Transitions>
  11.         <TransitionCollection>
  12.             <EdgeUIThemeTransition Edge="Left" />
  13.         </TransitionCollection>
  14.     </Page.Transitions>
  15.     <StackPanel HorizontalAlignment="Left" Height="977" VerticalAlignment="Top" Width="1513" Background="#FFCECECE" Margin="0,0,-13,0">
  16.         <Button Click="ButtonNext_Click" Content="Homepage" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
  17.         <Rectangle Height="100" Margin="575,0,-0.36,0"/>
  18.         <Button Click="Check_if_dataentered" Content="check data" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
  19.         <StackPanel>
  20.             <TextBlock Text="What's your name?"/>
  21.             <StackPanel Orientation="Horizontal" Margin="0,20,0,20">
  22.  
  23.                 <TextBox x:Name="nameInput"
  24.                     Header="Enter your website domain :" PlaceholderText="https://yourdomain.com"
  25.                     Width="300" HorizontalAlignment="Left"/>
  26.  
  27.                 <Button Content="Connect" Click="SendInputButton"/>
  28.             </StackPanel>
  29.             <TextBlock x:Name="greetingOutput"/>
  30.             <Button x:Name="RESET" Content="RESET" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Click="RESET_Click"/>
  31.         </StackPanel>
  32.  
  33.     </StackPanel>
  34.  
  35.  
  36. </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement