-
-
Notifications
You must be signed in to change notification settings - Fork 449
Korean IME Infobar #3426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Korean IME Infobar #3426
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
9486355
Add check registry method
onesounds 43330db
Add InfoBar Control
onesounds d1ceba7
Adjust Inforbar
onesounds 5c09598
Add Infobar strings for korean
onesounds 736837e
Add function for switch and button
onesounds 762b267
Merge branch 'dev' into 250405-KoreanIME
onesounds 5c55d29
Handle it so that it doesn’t show if the registry is missing.
onesounds 62e32dc
Merge branch 'dev' into 250405-KoreanIME
onesounds 33392f6
Merge remote-tracking branch 'origin/250405-KoreanIME' into 250405-Ko…
onesounds 7052701
Merge branch 'dev' into 250405-KoreanIME
onesounds 7fdc216
Fix small things for merging dev
onesounds 77ffafc
Fix string
onesounds 3c49d8e
Fix Binding error
onesounds d9a353b
- Fix String and adjust messages
onesounds be0a9b7
clean up comment
onesounds afe9d9a
Merge branch 'dev' into 250405-KoreanIME
onesounds 317f241
- Add Comment
onesounds 8686308
Merge remote-tracking branch 'origin/250405-KoreanIME' into 250405-Ko…
onesounds 1c1bad0
Cleanup Code
onesounds f1b0bb8
Remove namespace
onesounds ebff80c
Add Error Message
onesounds f56d038
Remove debug codes & Improve code quality
Jack251970 b14cf89
Remove useless using
Jack251970 1517db8
Revert wrong changes on en.xaml
Jack251970 c5f2fca
Revert wrong changes on en.xaml
Jack251970 218635a
Add logic to check whether the Korean IME is in use
onesounds a6c7430
Code quality
Jack251970 7192319
Change IME settings icon
Jack251970 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<UserControl | ||
x:Class="Flow.Launcher.Resources.Controls.InfoBar" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:cc="clr-namespace:Flow.Launcher.Resources.Controls" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:ui="http://schemas.modernwpf.com/2019" | ||
d:DesignHeight="45" | ||
d:DesignWidth="400" | ||
mc:Ignorable="d"> | ||
<UserControl.Resources /> | ||
<Grid> | ||
<Border | ||
x:Name="PART_Border" | ||
MinHeight="48" | ||
Padding="18 18 18 18" | ||
Background="{DynamicResource InfoBarInfoBG}" | ||
BorderBrush="{DynamicResource Color03B}" | ||
BorderThickness="1" | ||
CornerRadius="5"> | ||
<Grid> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="Auto" /> | ||
<ColumnDefinition Width="*" /> | ||
<ColumnDefinition Width="Auto" MinWidth="24" /> | ||
</Grid.ColumnDefinitions> | ||
<StackPanel Grid.Column="0" Orientation="Horizontal"> | ||
<Border | ||
x:Name="PART_IconBorder" | ||
Width="16" | ||
Height="16" | ||
Margin="0 0 12 0" | ||
VerticalAlignment="Top" | ||
CornerRadius="10"> | ||
<ui:FontIcon | ||
x:Name="PART_Icon" | ||
Margin="1 0 0 1" | ||
VerticalAlignment="Center" | ||
FontFamily="Segoe MDL2 Assets" | ||
FontSize="13" | ||
Foreground="{DynamicResource Color01B}" | ||
Visibility="Visible" /> | ||
</Border> | ||
|
||
</StackPanel> | ||
<StackPanel | ||
x:Name="PART_StackPanel" | ||
Grid.Column="1" | ||
VerticalAlignment="Center" | ||
Orientation="Horizontal"> | ||
<TextBlock | ||
x:Name="PART_Title" | ||
Margin="0 0 12 0" | ||
FontWeight="SemiBold" | ||
Foreground="{DynamicResource Color05B}" | ||
Text="{Binding RelativeSource={RelativeSource AncestorType=cc:InfoBar}, Path=Title}" /> | ||
<TextBlock | ||
x:Name="PART_Message" | ||
Foreground="{DynamicResource Color05B}" | ||
Text="{Binding RelativeSource={RelativeSource AncestorType=cc:InfoBar}, Path=Message}" | ||
TextWrapping="Wrap" /> | ||
</StackPanel> | ||
|
||
<Button | ||
x:Name="PART_CloseButton" | ||
Grid.Column="2" | ||
Width="32" | ||
Height="32" | ||
VerticalAlignment="Center" | ||
AutomationProperties.Name="Close InfoBar" | ||
Click="PART_CloseButton_Click" | ||
Content="" | ||
FontFamily="Segoe MDL2 Assets" | ||
FontSize="12" | ||
ToolTip="Close" | ||
Visibility="Visible" /> | ||
</Grid> | ||
</Border> | ||
</Grid> | ||
</UserControl> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.