-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #426 from TheJoeFin/new-settings-pages
New Settings UX Improvements
- Loading branch information
Showing
5 changed files
with
183 additions
and
729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,32 @@ | |
Click="AboutBTN_Click" /> | ||
</Grid> | ||
|
||
<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 | ||
Margin="0,16,0,4" | ||
|
@@ -88,7 +114,10 @@ | |
FontSize="16" | ||
Style="{StaticResource TextHeader}" | ||
Text="Show Notification" /> | ||
<ui:ToggleSwitch Name="ShowToastCheckBox"> | ||
<ui:ToggleSwitch | ||
Name="ShowToastCheckBox" | ||
Checked="ShowToastCheckBox_Checked" | ||
Unchecked="ShowToastCheckBox_Unchecked"> | ||
<TextBlock Style="{StaticResource TextBodyNormal}"> | ||
Show Notification when text is copied. | ||
</TextBlock> | ||
|
@@ -140,7 +169,6 @@ | |
</TextBlock> | ||
</RadioButton> | ||
|
||
|
||
<!-- Run in the background --> | ||
<TextBlock | ||
Margin="0,16,0,4" | ||
|
@@ -156,6 +184,17 @@ | |
</TextBlock> | ||
</ui:ToggleSwitch> | ||
|
||
<!-- Startup on login --> | ||
<ui:ToggleSwitch | ||
Name="StartupOnLoginCheckBox" | ||
Margin="0,12,0,0" | ||
Checked="StartupOnLoginCheckBox_Checked" | ||
Unchecked="StartupOnLoginCheckBox_Unchecked"> | ||
<TextBlock x:Name="StartupTextBlock" Style="{StaticResource TextBodyNormal}"> | ||
Auto start Text Grab when you login | ||
</TextBlock> | ||
</ui:ToggleSwitch> | ||
|
||
<TextBlock | ||
Margin="0,16,0,4" | ||
FontSize="16" | ||
|
@@ -212,6 +251,46 @@ | |
</TextBlock> | ||
</ui:ToggleSwitch> | ||
|
||
<StackPanel> | ||
<ui:ToggleSwitch | ||
Name="TryInsertCheckbox" | ||
Margin="0,12,0,0" | ||
Checked="TryInsertCheckbox_Checked" | ||
Unchecked="TryInsertCheckbox_Unchecked"> | ||
<TextBlock Style="{StaticResource TextBodyNormal}"> | ||
Try to Insert text in text fields after Fullscreen Grab after: | ||
</TextBlock> | ||
</ui:ToggleSwitch> | ||
<StackPanel Margin="0,8,0,0" Orientation="Horizontal"> | ||
<TextBox | ||
x:Name="SecondsTextBox" | ||
Width="40" | ||
Height="26" | ||
Margin="48,0,0,0" | ||
HorizontalAlignment="Left" | ||
HorizontalContentAlignment="Center" | ||
VerticalContentAlignment="Center" | ||
Background="White" | ||
FontWeight="Medium" | ||
Foreground="Black" | ||
Style="{StaticResource TextBoxStyle1}" | ||
Text="0.5" | ||
TextChanged="ValidateTextIsNumber" /> | ||
<TextBlock | ||
Margin="4,0,0,0" | ||
VerticalAlignment="Center" | ||
Style="{StaticResource TextBodyNormal}" | ||
Text="Seconds" /> | ||
<TextBlock | ||
x:Name="DelayTimeErrorSeconds" | ||
Margin="12,0,0,0" | ||
VerticalAlignment="Center" | ||
Style="{StaticResource TextBodyNormal}" | ||
Text="⚠ Pick a number between 0 and 10" | ||
Visibility="Collapsed" /> | ||
</StackPanel> | ||
</StackPanel> | ||
|
||
<TextBlock | ||
Margin="0,16,0,4" | ||
FontSize="16" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.