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
<Page
    x:Class="SmartCharging.IntroPage"
    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">
        <FlipView HorizontalAlignment="Stretch" VerticalAlignment="Stretch" x:Name="IntroFlipView"  ManipulationMode="All"  Tapped="IntroFlipView_Tapped" PointerPressed="IntroFlipView_PointerPressed" ManipulationStarted="IntroFlipView_ManipulationStarted_1" ManipulationStarting="IntroFlipView_ManipulationStarting" PointerEntered="IntroFlipView_PointerEntered" 
                  >
          

            <FlipView.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition Height="*"></RowDefinition>
                            <RowDefinition Height="3*"></RowDefinition>
                        </Grid.RowDefinitions>
                        
                        <Image Grid.Row="0" Grid.RowSpan="2" Source="{Binding ImageUrl}" Stretch="UniformToFill"/>
                        <TextBlock Text="{Binding Title}" FontFamily="Segoe UI" FontSize="25" 
                                 Foreground="#CCFFFFFF" Padding="15,50,15,20" Grid.Row="0" HorizontalAlignment="Center" TextWrapping="WrapWholeWords" />
                        
                    </Grid>
                </DataTemplate>
            </FlipView.ItemTemplate>
        </FlipView>


    </Grid>
</Page>

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/SmartCharging/IntroPage.xaml

Diff revisions: vs.
Revision Author Commited Message
799 Diff Diff JMBauan picture JMBauan Thu 08 Oct, 2015 13:36:32 +0000
527 JMBauan picture JMBauan Mon 24 Aug, 2015 08:47:39 +0000