- Redesign Setting Window

- Add Segoe Fluent Icons
- Edited Hotkey control for right aligment
  (Plugin Area WIP)
This commit is contained in:
Dobin Park 2021-10-03 21:44:03 +09:00
parent 92f0041109
commit c1b0929ed5
5 changed files with 804 additions and 297 deletions

View file

@ -50,6 +50,7 @@
<Page Remove="Themes\League.xaml" />
<Page Remove="Themes\ThemeBuilder\Template.xaml" />
<Page Remove="Themes\Win11Dark.xaml" />
<Resource Include="resources\Segoe Fluent Icons.ttf" />
</ItemGroup>
<ItemGroup>

View file

@ -9,11 +9,11 @@
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150" />
<ColumnDefinition Width="125" />
<ColumnDefinition Width="160" />
</Grid.ColumnDefinitions>
<TextBox x:Name="tbHotkey" TabIndex="100" VerticalContentAlignment="Center" Grid.Column="0"
PreviewKeyDown="TbHotkey_OnPreviewKeyDown" input:InputMethod.IsInputMethodEnabled="False"/>
<TextBlock x:Name="tbMsg" Visibility="Hidden" Margin="5 0 0 0" VerticalAlignment="Center" Grid.Column="1" />
<TextBlock x:Name="tbMsg" Visibility="Hidden" Margin="8 0 0 0" VerticalAlignment="Center" Grid.Column="0" HorizontalAlignment="Right"/>
<TextBox x:Name="tbHotkey" TabIndex="100" VerticalContentAlignment="Center" Grid.Column="1"
PreviewKeyDown="TbHotkey_OnPreviewKeyDown" input:InputMethod.IsInputMethodEnabled="False" Margin="5 0 18 0"/>
</Grid>
</UserControl>

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -19,7 +19,7 @@
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}">
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush Color="Black" Opacity="0.5"/>
<SolidColorBrush Color="Black" Opacity="0.7"/>
</Setter.Value>
</Setter>
</Style>