Skip to content

Commit

Permalink
Add more welcome message to settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJoeFin committed Feb 17, 2024
1 parent 4ff99d2 commit 8a934ef
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 8 deletions.
31 changes: 25 additions & 6 deletions Text-Grab/Pages/GeneralSettings.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,31 @@
Click="AboutBTN_Click" />
</Grid>

<TextBlock Style="{StaticResource TextBodyNormal}">
What do you want to see here? Submit an issue on GitHub
</TextBlock>
<ui:HyperlinkButton NavigateUri="https://github.com/TheJoeFin/Text-Grab/issues">
https://github.com/TheJoeFin/Text-Grab/issues
</ui:HyperlinkButton>
<Border
Margin="0,20"
Padding="20,12,20,20"
Background="{ui:ThemeResource SolidBackgroundFillColorBaseBrush}"
CornerRadius="8">
<StackPanel Orientation="Vertical">
<TextBlock Style="{StaticResource TextHeader}" Text="Hello there!" />
<TextBlock Style="{StaticResource TextBodyNormal}">
Thank you for using Text Grab!
Building this application is very much a labor of love. I am always happy to hear from users to better understand how you use the app and what you would like to see in the future.<LineBreak />
Feel free to open an issue on GitHub if you have a bug or feature request. Email me directly for questions or just to say hi.<LineBreak />
Happy Text Grabbing!</TextBlock>
<TextBlock
Margin="0,12"
HorizontalAlignment="Left"
Style="{StaticResource TextBodyNormal}"
Text="- Joe" />
<ui:HyperlinkButton NavigateUri="https://github.com/TheJoeFin/Text-Grab/issues">
🌐 https://github.com/TheJoeFin/Text-Grab/issues
</ui:HyperlinkButton>
<ui:HyperlinkButton NavigateUri="mailto:[email protected]">
📧 [email protected]
</ui:HyperlinkButton>
</StackPanel>
</Border>

<!-- Theme -->
<TextBlock
Expand Down
4 changes: 2 additions & 2 deletions Text-Grab/Views/SettingsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
Title="Text Grab Settings"
Width="660"
Height="600"
Height="800"
MinWidth="200"
MinHeight="300"
d:Background="Black"
Expand Down Expand Up @@ -47,7 +47,7 @@
<ui:NavigationView
x:Name="SettingsNavView"
Grid.Row="1"
Background="{DynamicResource SolidBackgroundFillColorBaseBrush}"
Background="{ui:ThemeResource SolidBackgroundFillColorBaseBrush}"
IsBackButtonVisible="Collapsed"
PaneDisplayMode="LeftFluent">
<ui:NavigationView.MenuItems>
Expand Down

0 comments on commit 8a934ef

Please sign in to comment.