Skip to content

Commit

Permalink
Add beta messaging to title bar and welcome tour
Browse files Browse the repository at this point in the history
  • Loading branch information
lmadhavan committed Nov 20, 2021
1 parent c21d5ad commit bba0859
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Fotografix/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@
Height="40">
<StackPanel Orientation="Horizontal">
<Image HorizontalAlignment="Left" VerticalAlignment="Center" Source="Assets/Square44x44Logo.png" Margin="12,1,0,0" Width="20" Height="20" />
<TextBlock x:Name="appTitle" Text="{x:Bind AppTitle}" VerticalAlignment="Center" Margin="10,0,0,0" FontSize="16" />
<TextBlock x:Name="appTitle" VerticalAlignment="Center" Margin="10,0,0,0" FontSize="16">
<Run Text="{x:Bind AppTitle}" />
<Run Text="Beta" Foreground="{ThemeResource ButtonDisabledForegroundThemeBrush}" />
</TextBlock>
</StackPanel>
</Border>

Expand Down
7 changes: 7 additions & 0 deletions Fotografix/WelcomeDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
</ResourceDictionary>
</FlipView.Resources>

<TextBlock>
<Run Text="Thank you for trying the beta version of Fotografix. If you run into any problems, please use the" />
<Run FontFamily="Segoe MDL2 Assets" Text="&#xE939;" />
<Run FontWeight="Bold" Text="Help" />
<Run Text="button to send feedback." />
</TextBlock>

<Grid VerticalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="125" />
Expand Down
2 changes: 1 addition & 1 deletion Fotografix/WelcomeDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static async Task ShowOnFirstLoadAsync()
settings[settingKey] = true;
}

private int NumberOfPages => 3;
private int NumberOfPages => 4;

private void Next_Click(ContentDialog sender, ContentDialogButtonClickEventArgs args)
{
Expand Down

0 comments on commit bba0859

Please sign in to comment.