Skip to content

Commit

Permalink
Work on about
Browse files Browse the repository at this point in the history
  • Loading branch information
Panda-Sharp committed May 22, 2020
1 parent 6062d1f commit 9f21eb1
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions Yugen.Mosaic.Uwp/Controls/SettingsDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,26 +86,33 @@
<Run Text="{x:Bind ViewModel.AppVersion}" />
</TextBlock>


<TextBlock Foreground="{ThemeResource AppForegroundBrush}"
Style="{StaticResource CaptionTextBlockStyle}">
<Run Text="Developed by"
FontWeight="SemiBold" />
<LineBreak />
<Run Text="{x:Bind ViewModel.Publisher}" />
</TextBlock>
Style="{StaticResource BodyTextBlockStyle}"
Text="Developed by" />
<HyperlinkButton Content="{x:Bind ViewModel.Publisher}"
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}"
Margin="0,-8,0,0"
NavigateUri="http://www.yugenapps.com"/>

<TextBlock Foreground="{ThemeResource AppForegroundBrush}"
Style="{StaticResource CaptionTextBlockStyle}">
<Run Text="Colaborators"
FontWeight="SemiBold" />
<LineBreak />
<Run Text="{x:Bind ViewModel.Collaborator[0]}" />
<LineBreak />
<Run Text="{x:Bind ViewModel.Collaborator[1]}" />
</TextBlock>

Style="{StaticResource BodyTextBlockStyle}"
Text="UI" />
<HyperlinkButton Content="Leisvan"
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}"
Margin="0,-8,0,0" />

<TextBlock Foreground="{ThemeResource AppForegroundBrush}"
Style="{StaticResource BodyTextBlockStyle}"
Text="Icon"/>
<HyperlinkButton Content="Yoshi"
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}"
Margin="0,-8,0,0"
NavigateUri="http://www.yoshi.com"/>

<HyperlinkButton Content="Rate and review"
Command="{x:Bind ViewModel.LaunchRateAndReviewCommand}" />
Command="{x:Bind ViewModel.LaunchRateAndReviewCommand}"
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}"/>

</StackPanel>

Expand Down

0 comments on commit 9f21eb1

Please sign in to comment.