Skip to content

Commit

Permalink
Fix for the dark mode of the wizard window.
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztof-lorenc committed May 13, 2019
1 parent 2103075 commit 8837ed9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<StackPanel Orientation="Vertical" VerticalAlignment="Center" Margin="6">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Stretch" Orientation="Vertical">
<TextBlock Text="Enter the server address:" Margin="0,0,0,10"/>
<materialDesign:ColorZone Mode="Light">
<materialDesign:ColorZone Mode="Standard" DockPanel.Dock="Top" Padding="8 4 8 4" CornerRadius="3" Background="DarkGray">
<ComboBox IsEditable="True" Text="{Binding Path=ProposedServerAddress}" KeyUp="ConnectionAdressKeyUp" Name="AddressComboBox"/>
</materialDesign:ColorZone>
</StackPanel>
Expand Down
9 changes: 7 additions & 2 deletions src/Soloplan.WhatsON.GUI/Config/Wizard/WizardWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Soloplan.WhatsON.GUI.Config.Wizard"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"

Background="{DynamicResource MaterialDesignPaper}"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Medium"
TextElement.FontSize="14"
FontFamily="pack://application:,,,/MaterialDesignThemes.Wpf;component/Resources/Roboto/#Roboto"
mc:Ignorable="d"
Title="Wizard" Height="711.897" Width="548.232" ShowInTaskbar="False">
Title="Wizard" Height="711.897" Width="548.232" ShowInTaskbar="False" MinHeight="400">

<materialDesign:DialogHost Identifier="WizardWaitDialogHostId" Name="WizardWaitDialogHost">
<materialDesign:DialogHost.DialogContent>
<ProgressBar
Expand Down

0 comments on commit 8837ed9

Please sign in to comment.