Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Page
    x:Class="SmartCharging.StandardUserRegistrationPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:SmartCharging"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    
    <Grid x:Name="LayoutRoot" VerticalAlignment="Stretch" Background="White">

        <Grid.ChildrenTransitions>
            <TransitionCollection>
                <EntranceThemeTransition/>
            </TransitionCollection>
        </Grid.ChildrenTransitions>

        <Grid.RowDefinitions>
            <RowDefinition Height="2*"/>
            <RowDefinition Height="5*"/>
        </Grid.RowDefinitions>

        <Border Grid.Row="0" Background="#2cdaff">
            <local:ImagePicker></local:ImagePicker>
        </Border>
        <StackPanel Orientation="Vertical" Grid.Row="1" HorizontalAlignment="Stretch" Margin="40,20">
            <TextBox PlaceholderText="Nome" x:Uid="NameTextBox" x:Name="NameInput"  Style="{StaticResource TextBoxStyleDefault}" Margin="0,5" Padding="0,10" BorderBrush="White" />
            <TextBox PlaceholderText="Cognome" x:Uid="SurnameTextBox"  x:Name="SurnameInput"  Style="{StaticResource TextBoxStyleDefault}" Margin="0,5" Padding="0,10"/>
            <TextBox PlaceholderText="Telefono (opzionale)" x:Uid="PhoneNumberTextBox" x:Name="PhoneNumberInput"  Style="{StaticResource TextBoxStyleDefault}"  Margin="0,7" Padding="0,10"/>
            <TextBox PlaceholderText="Username" x:Uid="UsernameTextBox" x:Name="UsernameInput"   Style="{StaticResource TextBoxStyleDefault}"  Margin="0,5" Padding="0,10"/>
            <PasswordBox PlaceholderText="Password"  x:Uid="Password" x:Name="PasswordInput"   Style="{StaticResource PasswordBoxStyleDefault}" Margin="0,5" Padding="0,10"/>
            <Button x:ConnectionId='1' x:Name="SubmitButton" BorderBrush="#FF564966" Content="Registrati" x:Uid="RegisterButton" Foreground="#FF564966" Margin="0,25,0,0" Height="64" Style="{StaticResource ButtonStyleFlat}" VerticalAlignment="Bottom"                                />
            
        </StackPanel>
        

    </Grid>
</Page>

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/SmartCharging/obj/Release/StandardUserRegistrationPage.xaml

Diff revisions: vs.
Revision Author Commited Message
799 JMBauan picture JMBauan Thu 08 Oct, 2015 13:36:32 +0000