Subversion Repository Public Repository

Nextrek

Diff Revisions 659 vs 660 for /Android/SmartCharging/SmartCharging_WP/SmartCharging/NewReviewPage.xaml

Diff revisions: vs.
  @@ -6,6 +6,7 @@
6 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8 8 mc:Ignorable="d"
9 +
9 10 Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
10 11
11 12 <Border Background="White">
  @@ -36,10 +37,12 @@
36 37 <TextBlock Text="{Binding Name}" Grid.Row="1" Foreground="#FF666666" FontSize="22" FontWeight="SemiBold" Padding="10,20,10,10" TextWrapping="WrapWholeWords" HorizontalAlignment="Center"></TextBlock>
37 38 <TextBlock Text="{Binding TypeLabel}" Grid.Row="2" Foreground="#FF666666" FontSize="18" Padding="8,0,8,8" IsHoldingEnabled="False" IsRightTapEnabled="False" IsHitTestVisible="False" IsTapEnabled="False" IsDoubleTapEnabled="False" IsColorFontEnabled="False" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
38 39
39 - <local:ChargeRating Grid.Row="3" Grid.ColumnSpan="1" Grid.Column="1" Margin="0,20" HorizontalAlignment="Center"></local:ChargeRating>
40 + <local:ChargeRating x:Name="RatingControl" Grid.Row="3" Grid.ColumnSpan="1" Grid.Column="1" Margin="0,20" HorizontalAlignment="Center" Editable="true" Value="1"></local:ChargeRating>
40 41 <TextBox PlaceholderText="Scrivi la recensione..." x:Uid="ReviewTextBox" x:Name="ReviewDescriptionTextBox" Grid.Row="4" MinHeight="200" Style="{StaticResource TextBoxStyleDefault}"/>
41 42
42 - <Button x:Name="SubmitReviewButton" x:Uid="SubmitReviewButton" Grid.Row="5" BorderBrush="#FF564966" Content="Invia" Foreground="#FF564966" Margin="0,35,0,0" Height="64" Style="{StaticResource ButtonStyleFlat}" VerticalAlignment="Bottom" />
43 + <Button x:Name="SubmitReviewButton" x:Uid="SubmitReviewButton" Grid.Row="5" BorderBrush="#FF564966" Content="Invia" Foreground="#FF564966" Margin="0,35,0,0" Height="64" Style="{StaticResource ButtonStyleFlat}" VerticalAlignment="Bottom" Tapped="SubmitReviewButton_Tapped" />
44 +
45 + <ProgressRing x:Name="Loader" IsActive="True" Grid.RowSpan="100" Grid.ColumnSpan="100" Background="#99000000" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" IsHitTestVisible="True" Visibility="Collapsed" Foreground="#FF2CDAFF"/>
43 46
44 47 </Grid>
45 48