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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<phone:PhoneApplicationPage 
    x:Class="NextrekWebTVpivot.Feedback"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Landscape" Orientation="Landscape"
    mc:Ignorable="d" d:DesignHeight="480" d:DesignWidth="728"
    shell:SystemTray.IsVisible="True">

    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <!--TitlePanel contains the name of the application and page title-->
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="PageTitle" Text="Feedback" Margin="0,-20,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
            <TextBlock Margin="0,-10,0,0">
                Thank you for sharing your feedback on the application.
            </TextBlock>
            <TextBlock>
                It will help us shape the next version.
            </TextBlock>
            <TextBlock Margin="0,-10,0,0">
                ----------------------------------------------------------------------------------------
            </TextBlock>
            <TextBlock Margin="0,-10,0,0">
                Grazie per aver condiviso il tuo feedback sull'applicazione.
            </TextBlock>
            <TextBlock>
                Ci aiutera' a dar forma alla prossima versione.
            </TextBlock>
        </StackPanel>

        <!--ContentPanel - place additional content here-->
        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="0,0,12,0">



            <StackPanel Orientation="Vertical" Margin="0,-35,0,0">
                <TextBox x:Name="feedbackText" Height="240" >
                </TextBox>
                <Button x:Name="send" Margin="0,-22,0,0" Height="80" Background="#FF007F8E" Style="{StaticResource ButtonStyleRateFeedbackMore}" Click="send_Click">
                    <Button.Content>
                        <Image  Margin="0,-5,0,0" Height="50" Source="/NextrekWebTVpivot;component/mail_send.png"></Image>
                    </Button.Content>
                </Button>
            </StackPanel>

            <Canvas x:Name="noFeedCanvas" Background="White" Height="100" Width="350" Margin="0,-80,0,0" Visibility="Collapsed">
                <StackPanel Orientation="Vertical" Height="100" Width="350">
                    <TextBlock Foreground="Black" FontSize="25" Margin="10,10,0,0">
                        INSERT FEEDBACK...
                    </TextBlock>
                    <Button x:Name="okButton" Height="70" Width="150" Margin="200,-10,0,0" Content="OK" Foreground="White" Background="Black" BorderThickness="3" Click="okButton_Click">
                    </Button>
                </StackPanel>
            </Canvas>
        </Grid>
    </Grid>

    <!--Sample code showing usage of ApplicationBar-->
    <!--<phone:PhoneApplicationPage.ApplicationBar>
        <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
            <shell:ApplicationBar.MenuItems>
                <shell:ApplicationBarMenuItem Text="MenuItem 1"/>
                <shell:ApplicationBarMenuItem Text="MenuItem 2"/>
            </shell:ApplicationBar.MenuItems>
        </shell:ApplicationBar>
    </phone:PhoneApplicationPage.ApplicationBar>-->

</phone:PhoneApplicationPage>

Commits for Nextrek/WindowsPhone/NextrekWebTVpivot/NextrekWebTVpivot/Feedback.xaml

Diff revisions: vs.
Revision Author Commited Message
6 FMMortaroli picture FMMortaroli Sat 20 Apr, 2013 15:30:47 +0000