Skip to content

Commit

Permalink
Working on design
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianLima committed Aug 10, 2017
1 parent 9ae1160 commit 8c39092
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
7 changes: 7 additions & 0 deletions HueHue/HueHue.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
<Compile Include="Helpers\Effects.cs" />
<Compile Include="Helpers\MusicSpectrum.cs" />
<Compile Include="Helpers\SpectrumBase.cs" />
<Compile Include="SettingsWindow.xaml.cs">
<DependentUpon>SettingsWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Views\FixedColors.xaml.cs">
<DependentUpon>FixedColors.xaml</DependentUpon>
</Compile>
Expand All @@ -102,6 +105,10 @@
<Compile Include="Views\SnakeMode.xaml.cs">
<DependentUpon>SnakeMode.xaml</DependentUpon>
</Compile>
<Page Include="SettingsWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Views\FixedColors.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
Expand Down
2 changes: 1 addition & 1 deletion HueHue/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:local="clr-namespace:HueHue"
mc:Ignorable="d"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Regular"
TextElement.FontSize="13"
Expand Down
17 changes: 15 additions & 2 deletions HueHue/SettingsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,23 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:local="clr-namespace:HueHue"
mc:Ignorable="d"
Title="SettingsWindow" Height="300" Width="300">
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="Segoe UI Light"
Title="SettingsWindow" Height="600" Width="600">
<Grid>

<Grid.ColumnDefinitions>
<ColumnDefinition Width="73*"/>
<ColumnDefinition Width="520*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="40*"/>
<RowDefinition Height="233*"/>
</Grid.RowDefinitions>
<materialDesign:ColorZone Padding="16" materialDesign:ShadowAssist.ShadowDepth="Depth2" Mode="PrimaryMid" VerticalAlignment="Stretch" Content="Settings" Margin="0,0,0,10" Grid.ColumnSpan="2"/>

</Grid>
</Window>

0 comments on commit 8c39092

Please sign in to comment.