-
Notifications
You must be signed in to change notification settings - Fork 92
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
59 changed files
with
4,465 additions
and
4,860 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
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,61 +1,61 @@ | ||
<UserControl | ||
x:Class="HandheldCompanion.Controls.Hints.IHint" | ||
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.Controls.Hints" | ||
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:Background="White" | ||
d:DesignHeight="120" | ||
d:DesignWidth="800" | ||
d:Visibility="Visible" | ||
Visibility="Collapsed" | ||
mc:Ignorable="d"> | ||
|
||
<Expander | ||
Name="HintsSteamNeptuneDeskop" | ||
Padding="15,12,12,12" | ||
HorizontalAlignment="Stretch"> | ||
|
||
<Expander.Header> | ||
<Grid> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="8*" MinWidth="200" /> | ||
<ColumnDefinition Width="2*" MinWidth="200" /> | ||
</Grid.ColumnDefinitions> | ||
|
||
<DockPanel Margin="0,12,12,12"> | ||
<ui:FontIcon | ||
Height="40" | ||
HorizontalAlignment="Center" | ||
FontFamily="{DynamicResource SymbolThemeFontFamily}" | ||
Glyph="" /> | ||
|
||
<ui:SimpleStackPanel Margin="12,0,0,0" VerticalAlignment="Center"> | ||
<TextBlock Name="HintTitle" Style="{StaticResource BodyTextBlockStyle}" /> | ||
<TextBlock | ||
Name="HintDescription" | ||
Foreground="{DynamicResource SystemControlForegroundBaseMediumBrush}" | ||
Style="{StaticResource CaptionTextBlockStyle}" | ||
TextWrapping="Wrap" /> | ||
</ui:SimpleStackPanel> | ||
</DockPanel> | ||
|
||
<Button | ||
Name="HintActionButton" | ||
Grid.Column="1" | ||
Width="200" | ||
HorizontalAlignment="Right" | ||
d:Visibility="Visible" | ||
Click="HintActionButton_Click" | ||
FontSize="14" | ||
Style="{StaticResource AccentButtonStyle}" | ||
Visibility="Collapsed" /> | ||
</Grid> | ||
</Expander.Header> | ||
|
||
<TextBlock Name="HintReadMe" TextWrapping="Wrap" /> | ||
</Expander> | ||
</UserControl> | ||
<UserControl | ||
x:Class="HandheldCompanion.Controls.Hints.IHint" | ||
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.Controls.Hints" | ||
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:Background="White" | ||
d:DesignHeight="120" | ||
d:DesignWidth="800" | ||
d:Visibility="Visible" | ||
Visibility="Collapsed" | ||
mc:Ignorable="d"> | ||
|
||
<Expander | ||
Name="HintsSteamNeptuneDeskop" | ||
Padding="15,12,12,12" | ||
HorizontalAlignment="Stretch"> | ||
|
||
<Expander.Header> | ||
<Grid> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="8*" MinWidth="200" /> | ||
<ColumnDefinition Width="2*" MinWidth="200" /> | ||
</Grid.ColumnDefinitions> | ||
|
||
<DockPanel Margin="0,12,12,12"> | ||
<ui:FontIcon | ||
Height="40" | ||
HorizontalAlignment="Center" | ||
FontFamily="{DynamicResource SymbolThemeFontFamily}" | ||
Glyph="" /> | ||
|
||
<ui:SimpleStackPanel Margin="12,0,0,0" VerticalAlignment="Center"> | ||
<TextBlock Name="HintTitle" Style="{StaticResource BodyTextBlockStyle}" /> | ||
<TextBlock | ||
Name="HintDescription" | ||
Foreground="{DynamicResource SystemControlForegroundBaseMediumBrush}" | ||
Style="{StaticResource CaptionTextBlockStyle}" | ||
TextWrapping="Wrap" /> | ||
</ui:SimpleStackPanel> | ||
</DockPanel> | ||
|
||
<Button | ||
Name="HintActionButton" | ||
Grid.Column="1" | ||
Width="200" | ||
HorizontalAlignment="Right" | ||
d:Visibility="Visible" | ||
Click="HintActionButton_Click" | ||
FontSize="14" | ||
Style="{StaticResource AccentButtonStyle}" | ||
Visibility="Collapsed" /> | ||
</Grid> | ||
</Expander.Header> | ||
|
||
<TextBlock Name="HintReadMe" TextWrapping="Wrap" /> | ||
</Expander> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
|
||
namespace HandheldCompanion.Controls.Hints | ||
{ | ||
/// <summary> | ||
/// Interaction logic for IHint.xaml | ||
/// </summary> | ||
public partial class IHint : UserControl | ||
{ | ||
public IHint() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
protected virtual void HintActionButton_Click(object sender, RoutedEventArgs e) | ||
{ } | ||
|
||
public virtual void Stop() | ||
{ } | ||
} | ||
} | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
|
||
namespace HandheldCompanion.Controls.Hints | ||
{ | ||
/// <summary> | ||
/// Interaction logic for IHint.xaml | ||
/// </summary> | ||
public partial class IHint : UserControl | ||
{ | ||
public IHint() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
protected virtual void HintActionButton_Click(object sender, RoutedEventArgs e) | ||
{ } | ||
|
||
public virtual void Stop() | ||
{ } | ||
} | ||
} |
Oops, something went wrong.