-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Not fully fleshed out yet, but by seeing demand, i'm going to put it under releases.
- Loading branch information
Showing
8 changed files
with
228 additions
and
174 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<UserControl x:Class="HueHue.Views.Devices.AddAsusAuraView" | ||
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:HueHue.Views.Devices" | ||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" | ||
mc:Ignorable="d" | ||
d:DesignHeight="300" d:DesignWidth="300"> | ||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="68"/> | ||
<RowDefinition/> | ||
<RowDefinition Height="100"/> | ||
</Grid.RowDefinitions> | ||
<Button Content="Add" Margin="0,0,10,10" Height="32" HorizontalAlignment="Right" Width="75" VerticalAlignment="Bottom" Click="Button_Click" Grid.Row="2"/> | ||
<Image HorizontalAlignment="Left" Height="50" Margin="10,10,0,0" VerticalAlignment="Top" Width="50" Source="/HueHue;component/Icons/Devices/AURA-sync.png" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality"/> | ||
<Label Content="Setup a new Asus Aura Device" HorizontalAlignment="Left" Margin="65,20,0,0" VerticalAlignment="Top" Height="26" Width="190"/> | ||
<ComboBox Margin="80,27,0,0" VerticalAlignment="Top" x:Name="ComboBox_SubType" Grid.Row="2" HorizontalAlignment="Left" Width="120" Height="29" SelectionChanged="ComboBox_SubType_SelectionChanged"> | ||
</ComboBox> | ||
<Label Content="Type:" HorizontalAlignment="Left" Margin="18,30,0,0" VerticalAlignment="Top" Grid.Row="2" Height="26" Width="37"/> | ||
<Label Content="Name:" HorizontalAlignment="Left" Margin="10,4,0,0" VerticalAlignment="Top" Grid.Row="2" Height="26" Width="45"/> | ||
<Grid Margin="10,7,10,22" Grid.Row="1"> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="7*"/> | ||
<ColumnDefinition Width="204.8"/> | ||
<ColumnDefinition Width="8*"/> | ||
</Grid.ColumnDefinitions> | ||
<TextBlock Text="First, download and install the Asus Aura SDK on your PC:" TextWrapping="Wrap" Height="33" VerticalAlignment="Top" Grid.ColumnSpan="3"/> | ||
<Button Content="Download Asus Aura SDK" Margin="1.8,33,4,0" VerticalAlignment="Top" Grid.Column="1" Click="Button_Click_1"/> | ||
<TextBlock Text="Now, make sure that the Asus SDK service is running, and just complete the setup below." Margin="0,70,0,0" TextWrapping="Wrap" Height="33" VerticalAlignment="Top" Grid.ColumnSpan="3"/> | ||
|
||
</Grid> | ||
<TextBox Height="23" Margin="80,4,100,0" TextWrapping="WrapWithOverflow" VerticalAlignment="Top" Grid.Row="2" Text="Chroma" x:Name="TextBoxName"/> | ||
|
||
</Grid> | ||
</UserControl> |
Oops, something went wrong.