Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Add repo url link in about page.
Browse files Browse the repository at this point in the history
  • Loading branch information
GreatHuang2007 committed Mar 25, 2022
1 parent 6ad67c5 commit 1c39bcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OGFrp.Main/About/AboutBox.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="1" HorizontalAlignment="Center" Grid.Row="1" TextWrapping="Wrap" Text="OGFrp" VerticalAlignment="Top" FontSize="36" Margin="0,40,0,0"/>
<TextBlock Grid.Column="1" HorizontalAlignment="Center" Margin="0,100,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="15" Text="Copyright MarchStudio 2022"/>
<TextBlock Grid.Column="1" HorizontalAlignment="Center" Margin="0,119,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="15"><Run Language="zh-cn" Text="Open source: https://github.com/MarchStudio/OGFrp"/></TextBlock>
<TextBlock x:Name="Lb_OpenSource" Grid.Column="1" HorizontalAlignment="Center" Margin="0,119,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="15" Cursor="Hand"><Run Language="zh-cn" Text="Open source: https://github.com/MarchStudio/OGFrp"/></TextBlock>
<TextBlock Grid.Column="1" HorizontalAlignment="Center" Margin="0,138,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="15"><Run Text="Please follow the "/><Run Language="zh-cn" Text="A"/><Run Text="pache"/><Run Language="zh-cn" Text=" "/><Run Text="2.0 license"/><Run Language="zh-cn" Text="."/></TextBlock>
</Grid>
</ScrollViewer>
Expand Down
4 changes: 3 additions & 1 deletion src/OGFrp.Main/About/AboutBox.xaml.vb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Public Class AboutBox

Private Sub Lb_OpenSource_MouseDown(sender As Object, e As MouseButtonEventArgs) Handles Lb_OpenSource.MouseDown
Process.Start("https://github.com/MarchStudio/OGFrp")
End Sub
End Class

0 comments on commit 1c39bcb

Please sign in to comment.