1
0
Fork 0
Browse Source

add white fill/shape/border around app's logo.

When the program is in dark mode, the logo is difficult to see (if you can see it at all). I've added a block of white behind it show to combat this. I went with white because the logo is fine when Windows is in light mode. Because of that, the border/shape/fill recedes into the background.

I decided against changing the logo programmatically to an alternative version because it'll require more work than it's worth. This is a minor cosmetic part of the program and, this way, the logo remains as intended (a rich navy blue).
stable
Craig Oates 3 years ago
parent
commit
4c0f44eac9
  1. 10
      src/EyesAndEars.UWP/EyesAndEars.UWP/MainPage.xaml

10
src/EyesAndEars.UWP/EyesAndEars.UWP/MainPage.xaml

@ -26,11 +26,17 @@
Text="{x:Bind _vm.CurrentTime, Mode=OneWay, FallbackValue=00}"
Margin="0" Padding="0"/>
<StackPanel Grid.Row="0" Orientation="Horizontal"
<Rectangle Fill="White" Width="92" Height="92" HorizontalAlignment="Left"
RadiusX="46" RadiusY="46"
/>
<StackPanel Grid.Row="0" Orientation="Horizontal" Margin="2,0,0,0"
VerticalAlignment="Top">
<MediaElement Name="AudioUpdater" AutoPlay="True"/>
<Image Grid.Column="0" Width="88" Height="88" VerticalAlignment="Center"
Source="Images\logo.png"/>
<StackPanel Padding="8,0">
<TextBlock Text="Return to Ritherdon Project" FontSize="40"/>
<StackPanel Orientation="Horizontal">
@ -230,7 +236,7 @@
Height="79" Width="79"
Unchecked="LogToggle_Unchecked"
Checked="LogToggle_Checked"
IsChecked="True"/>
IsChecked="False"/>
<HyperlinkButton x:Name="InfoButton" Grid.Column="0"
NavigateUri="http://www.nicolaellis.com"