-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
2,079 additions
and
570 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,73 @@ | ||
<UserControl x:Class="HandheldCompanion.Controllers.IController" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:HandheldCompanion.Controllers" | ||
xmlns:resx="clr-namespace:HandheldCompanion.Properties" | ||
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800"> | ||
<UserControl | ||
x:Class="HandheldCompanion.Controllers.IController" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:HandheldCompanion.Controllers" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:resx="clr-namespace:HandheldCompanion.Properties" | ||
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern" | ||
d:DesignHeight="450" | ||
d:DesignWidth="800" | ||
mc:Ignorable="d"> | ||
|
||
<Border | ||
Padding="15,12,12,12" | ||
Background="{DynamicResource SystemControlPageBackgroundAltHighBrush}" | ||
CornerRadius="{DynamicResource ControlCornerRadius}"> | ||
Padding="15,12,12,12" | ||
Background="{DynamicResource SystemControlPageBackgroundAltHighBrush}" | ||
CornerRadius="{DynamicResource ControlCornerRadius}"> | ||
|
||
<Grid> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="5*" MinWidth="200" /> | ||
<ColumnDefinition Width="5*" MinWidth="200" /> | ||
</Grid.ColumnDefinitions> | ||
<StackPanel> | ||
<Grid> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="5*" MinWidth="200" /> | ||
<ColumnDefinition Width="5*" MinWidth="200" /> | ||
</Grid.ColumnDefinitions> | ||
|
||
<DockPanel> | ||
<ui:FontIcon | ||
|
||
Height="40" | ||
HorizontalAlignment="Center" | ||
FontFamily="{DynamicResource SymbolThemeFontFamily}" | ||
Glyph="" /> | ||
<DockPanel> | ||
<ui:FontIcon | ||
Height="40" | ||
HorizontalAlignment="Center" | ||
FontFamily="{DynamicResource SymbolThemeFontFamily}" | ||
Glyph="" /> | ||
|
||
<TextBlock Name="ui_name" Style="{StaticResource BodyTextBlockStyle}" VerticalAlignment="Center" Margin="12,0,0,0" /> | ||
</DockPanel> | ||
<TextBlock | ||
Name="ui_name" | ||
Margin="12,0,0,0" | ||
VerticalAlignment="Center" | ||
Style="{StaticResource BodyTextBlockStyle}" /> | ||
</DockPanel> | ||
|
||
<DockPanel Grid.Column="1" HorizontalAlignment="Right"> | ||
<Button Name="ui_button_hook" | ||
Style="{DynamicResource AccentButtonStyle}" Width="100" FontSize="14" Click="ui_button_hook_Click"/> | ||
<Button Name="ui_button_hide" | ||
Style="{DynamicResource AccentButtonStyle}" Width="100" FontSize="14" Margin="6,0,0,0" Click="ui_button_hide_Click"/> | ||
<Button Name="ui_button_calibrate" | ||
Style="{DynamicResource AccentButtonStyle}" Width="100" FontSize="14" Margin="6,0,0,0" Visibility="Collapsed" Click="ui_button_calibrate_Click" Content="Calibrate"/> | ||
</DockPanel> | ||
</Grid> | ||
<DockPanel Grid.Column="1" HorizontalAlignment="Right"> | ||
<Button | ||
Name="ui_button_hook" | ||
Width="100" | ||
Click="ui_button_hook_Click" | ||
FontSize="14" | ||
Style="{DynamicResource AccentButtonStyle}" /> | ||
<Button | ||
Name="ui_button_hide" | ||
Width="100" | ||
Margin="6,0,0,0" | ||
Click="ui_button_hide_Click" | ||
FontSize="14" | ||
Style="{DynamicResource AccentButtonStyle}" /> | ||
<Button | ||
Name="ui_button_calibrate" | ||
Width="100" | ||
Margin="6,0,0,0" | ||
Click="ui_button_calibrate_Click" | ||
Content="Calibrate" | ||
FontSize="14" | ||
Style="{DynamicResource AccentButtonStyle}" | ||
Visibility="Collapsed" /> | ||
</DockPanel> | ||
</Grid> | ||
|
||
<ui:ProgressBar | ||
Name="ProgressBarUpdate" | ||
d:Visibility="Visible" | ||
IsIndeterminate="True" | ||
Visibility="Collapsed" /> | ||
</StackPanel> | ||
</Border> | ||
</UserControl> |
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
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.