]> fbox.kageds.com Git - NEATEST.git/blob - NEA/SignUp.xaml
Basic Store
[NEATEST.git] / NEA / SignUp.xaml
1 <Window x:Class="SignUp"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6 xmlns:local="clr-namespace:NEA"
7 mc:Ignorable="d"
8 Title="SignUp" Height="552.407" Width="800" Background="#FF403939">
9 <Window.Resources>
10 <Style x:Key="FocusVisual">
11 <Setter Property="Control.Template">
12 <Setter.Value>
13 <ControlTemplate>
14 <Rectangle Margin="2" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2"/>
15 </ControlTemplate>
16 </Setter.Value>
17 </Setter>
18 </Style>
19 <SolidColorBrush x:Key="Button.Static.Background" Color="#FFDDDDDD"/>
20 <SolidColorBrush x:Key="Button.Static.Border" Color="#FF707070"/>
21 <SolidColorBrush x:Key="Button.MouseOver.Background" Color="#00BEE6FD"/>
22 <SolidColorBrush x:Key="Button.MouseOver.Border" Color="#003C7FB1"/>
23 <SolidColorBrush x:Key="Button.Pressed.Background" Color="#00C4E5F6"/>
24 <SolidColorBrush x:Key="Button.Pressed.Border" Color="#002C628B"/>
25 <SolidColorBrush x:Key="Button.Disabled.Background" Color="#FFF4F4F4"/>
26 <SolidColorBrush x:Key="Button.Disabled.Border" Color="#FFADB2B5"/>
27 <SolidColorBrush x:Key="Button.Disabled.Foreground" Color="#FF838383"/>
28 <Style x:Key="ButtonStyle1" TargetType="{x:Type Button}">
29 <Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
30 <Setter Property="Background" Value="{StaticResource Button.Static.Background}"/>
31 <Setter Property="BorderBrush" Value="{StaticResource Button.Static.Border}"/>
32 <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
33 <Setter Property="BorderThickness" Value="1"/>
34 <Setter Property="HorizontalContentAlignment" Value="Center"/>
35 <Setter Property="VerticalContentAlignment" Value="Center"/>
36 <Setter Property="Padding" Value="1"/>
37 <Setter Property="Template">
38 <Setter.Value>
39 <ControlTemplate TargetType="{x:Type Button}">
40 <Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
41 <ContentPresenter x:Name="contentPresenter" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
42 </Border>
43 <ControlTemplate.Triggers>
44 <Trigger Property="IsDefaulted" Value="true">
45 <Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
46 </Trigger>
47 <Trigger Property="IsMouseOver" Value="true">
48 <Setter Property="Background" TargetName="border" Value="{StaticResource Button.MouseOver.Background}"/>
49 <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.MouseOver.Border}"/>
50 </Trigger>
51 <Trigger Property="IsPressed" Value="true">
52 <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Pressed.Background}"/>
53 <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Pressed.Border}"/>
54 </Trigger>
55 <Trigger Property="IsEnabled" Value="false">
56 <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Disabled.Background}"/>
57 <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Disabled.Border}"/>
58 <Setter Property="TextElement.Foreground" TargetName="contentPresenter" Value="{StaticResource Button.Disabled.Foreground}"/>
59 </Trigger>
60 </ControlTemplate.Triggers>
61 </ControlTemplate>
62 </Setter.Value>
63 </Setter>
64 </Style>
65 </Window.Resources>
66 <Grid>
67 <TextBox x:Name="txtFirstName" HorizontalAlignment="Left" Height="27" Margin="10,49,0,0" TextWrapping="Wrap" Text="First Name" VerticalAlignment="Top" Width="169" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
68 <Label Content="Sign Up" HorizontalAlignment="Left" Height="35" Margin="9,8,0,0" VerticalAlignment="Top" Width="77" Foreground="White" FontSize="18"/>
69 <TextBox x:Name="txtEmail" HorizontalAlignment="Left" Height="27" Margin="9,94,0,0" TextWrapping="Wrap" Text="Email" VerticalAlignment="Top" Width="357" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
70 <TextBox x:Name="txtIGN" HorizontalAlignment="Left" Height="27" Margin="10,138,0,0" TextWrapping="Wrap" Text="In Game Name" VerticalAlignment="Top" Width="169" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
71 <TextBox x:Name="txtLastName" HorizontalAlignment="Left" Height="27" Margin="197,49,0,0" TextWrapping="Wrap" Text="Last Name" VerticalAlignment="Top" Width="169" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
72 <Label Content="Billing Info" HorizontalAlignment="Left" Height="35" Margin="9,251,0,0" VerticalAlignment="Top" Width="77" Foreground="White" FontSize="14"/>
73 <TextBox x:Name="txtAddress" HorizontalAlignment="Left" Height="27" Margin="9,286,0,0" TextWrapping="Wrap" Text="Address Line 1" VerticalAlignment="Top" Width="357" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
74 <TextBox x:Name="txtTown" HorizontalAlignment="Left" Height="27" Margin="10,330,0,0" TextWrapping="Wrap" Text="Town/City" VerticalAlignment="Top" Width="169" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
75 <TextBox x:Name="txtPostcode" HorizontalAlignment="Left" Height="27" Margin="197,330,0,0" TextWrapping="Wrap" Text="Postcode" VerticalAlignment="Top" Width="169" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
76 <TextBox x:Name="txtCardNum" Height="27" Margin="9,373,0,0" TextWrapping="Wrap" Text="Card Number" VerticalAlignment="Top" Width="357" BorderBrush="White" Background="#FF4D4B4B" Foreground="White" HorizontalAlignment="Left"/>
77 <TextBox x:Name="txtCVC" HorizontalAlignment="Left" Height="27" Margin="9,415,0,0" TextWrapping="Wrap" Text="CVC" VerticalAlignment="Top" Width="77" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
78 <Border x:Name="bor1" BorderBrush="White" BorderThickness="1" Height="41" Margin="9,459,0,0" CornerRadius="15" Background="#FF499E3C" HorizontalAlignment="Left" Width="347" VerticalAlignment="Top"/>
79 <Button x:Name="btnSignUp" Content="Sign Up" BorderBrush="#00707070" ClipToBounds="True" Background="#01F4F7FC" Foreground="White" HorizontalAlignment="Left" Width="346" Height="41" VerticalAlignment="Top" Margin="10,459,0,0" Style="{DynamicResource ButtonStyle1}" />
80 <TextBox x:Name="txtUsername" HorizontalAlignment="Left" Height="27" Margin="9,180,0,0" TextWrapping="Wrap" Text="Username" VerticalAlignment="Top" Width="357" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
81 <TextBox x:Name="txtPassword" HorizontalAlignment="Left" Height="27" Margin="10,219,0,0" TextWrapping="Wrap" Text="Password" VerticalAlignment="Top" Width="357" BorderBrush="White" Background="#FF4D4B4B" Foreground="White"/>
82 <Button x:Name="btnbrowse" Content="Choose Profile Picture" HorizontalAlignment="Left" Height="27" Margin="197,138,0,0" VerticalAlignment="Top" Width="169" Foreground="White" Background="#FF4D4B4B" BorderBrush="White" Style="{DynamicResource ButtonStyle1}"/>
83 <Image x:Name="ProfilePic" HorizontalAlignment="Left" Height="200" Margin="488,49,0,0" VerticalAlignment="Top" Width="200"/>
84 <Label Content="Player Profile" HorizontalAlignment="Left" Height="35" Margin="402,8,0,0" VerticalAlignment="Top" Width="187" Foreground="White" FontSize="18"/>
85 <Label x:Name="lblIGN" Content="" HorizontalAlignment="Left" Height="35" Margin="488,262,0,0" VerticalAlignment="Top" Width="200" Foreground="White" FontSize="18"/>
86
87
88 </Grid>
89 </Window>