Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Commit d0b31e7

Browse files
authored
Merge pull request #11 from Standaard-boos/Styling
Everything is beautiful now
2 parents 3144246 + 1c070c7 commit d0b31e7

11 files changed

Lines changed: 184 additions & 51 deletions

View/App.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:local="clr-namespace:View"
5+
xmlns:stylingHelperTools="clr-namespace:View.StylingHelperTools"
56
StartupUri="MainWindow.xaml">
67
<Application.Resources>
7-
8+
<ResourceDictionary Source="Styling/Main.xaml"/>
89
</Application.Resources>
910
</Application>

View/Authentication/LoginView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</Page.DataContext>
1313

1414
<Grid>
15-
<Border Background="#94D2E6" CornerRadius="10" Margin="10">
15+
<Border Background="{StaticResource BackgroundPrimary}" CornerRadius="10" Margin="10">
1616
<StackPanel Margin="10">
1717
<Label Content="E-mailadres van je schoolaccount" FontSize="14"/>
1818
<TextBox Margin="5 0" FontSize="14"
@@ -22,7 +22,7 @@
2222
<components:BindablePasswordBox Margin="5 0" FontSize="14"
2323
Password="{Binding Password}"/>
2424

25-
<Button Content="Inloggen" Margin="100 10" Background="#F16F6F" Foreground="White" FontSize="14" Command="{Binding LoginCommand}">
25+
<Button Content="Inloggen" Margin="100 10" Background="{StaticResource BackgroundTertiary}" Foreground="White" FontSize="14" Command="{Binding LoginCommand}">
2626
<Button.Resources>
2727
<Style TargetType="Border">
2828
<Setter Property="CornerRadius" Value="10"/>

View/Authentication/RegisterView.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</Page.DataContext>
1313

1414
<Grid>
15-
<Border Background="#94D2E6" CornerRadius="10" Margin="10">
15+
<Border Background="{StaticResource BackgroundPrimary}" CornerRadius="10" Margin="10">
1616
<StackPanel Margin="10">
1717
<Label Content="E-mailadres van je schoolaccount" FontSize="14"/>
1818
<TextBox Margin="5 0" FontSize="14"
@@ -23,9 +23,9 @@
2323
Password="{Binding Password}"/>
2424

2525
<Label Content="Wachtwoordsterkte:" FontSize="14" HorizontalAlignment="Center" Margin="0,0,-5,0"/>
26-
<ProgressBar Maximum="5" Value="{Binding PasswordStrength}" Height="7" Background="#F16F6F" Foreground="#fff78f"/>
26+
<ProgressBar Maximum="5" Value="{Binding PasswordStrength}" Height="7" Background="{StaticResource BackgroundTertiary}" Foreground="{StaticResource BackgroundQuaternary}"/>
2727

28-
<Button Name="registerSubmit" Content="Registreren" Margin="100 10" Background="#F16F6F" Foreground="White" FontSize="14" Command="{Binding RegisterCommand}">
28+
<Button Name="registerSubmit" Content="Registreren" Margin="100 10" Background="{StaticResource BackgroundTertiary}" Foreground="White" FontSize="14" Command="{Binding RegisterCommand}">
2929
<Button.Resources>
3030
<Style TargetType="Border">
3131
<Setter Property="CornerRadius" Value="10"/>

View/Authentication/VerificationView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
</Page.DataContext>
1313

1414
<Grid>
15-
<Border Background="#94D2E6" CornerRadius="10" Margin="10">
15+
<Border Background="{StaticResource BackgroundPrimary}" CornerRadius="10" Margin="10">
1616
<StackPanel Margin="10">
1717
<Label Content="Vul je verificatiecode in:" FontSize="14"/>
1818
<TextBox Margin="5 0" FontSize="14"
1919
Text="{Binding VerificationCode, UpdateSourceTrigger=PropertyChanged}"/>
2020

21-
<Button Name="VerifySubmit" Content="Verifiëren" Margin="100 10" Background="#F16F6F" Foreground="White" FontSize="14" Command="{Binding VerifyCommand}" Click="VerifySubmit_Click">
21+
<Button Name="VerifySubmit" Content="Verifiëren" Margin="100 10" Background="{StaticResource BackgroundTertiary}" Foreground="White" FontSize="14" Command="{Binding VerifyCommand}" Click="VerifySubmit_Click">
2222
<Button.Resources>
2323
<Style TargetType="Border">
2424
<Setter Property="CornerRadius" Value="10"/>

View/MainWindow.xaml

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,31 @@
77
xmlns:vm="clr-namespace:ViewModel;assembly=ViewModel"
88
xmlns:vmc="clr-namespace:ViewModel.Commands;assembly=ViewModel"
99
mc:Ignorable="d"
10+
Style="{StaticResource {x:Type Window}}"
1011
Title="Stugether" Height="450" Width="800">
1112
<Window.DataContext>
1213
<vm:MainPageViewModel/>
1314
</Window.DataContext>
14-
<DockPanel LastChildFill="True">
15-
<StackPanel DockPanel.Dock="Left" Width="100">
16-
<Grid Height="{Binding ActualHeight, ElementName=tbContentTitle, Mode=OneWay}">
17-
<Grid.ColumnDefinitions>
18-
<ColumnDefinition Width="1*" />
19-
<ColumnDefinition Width="1*" />
20-
</Grid.ColumnDefinitions>
21-
<Button x:Name="btPreviousButton" Content="&lt;" Margin="5,5,5,5" Click="NavigationNextPreviousButton_Click"/>
22-
<Button x:Name="btNextButton" Content="&gt;" Grid.Column="1" Margin="5" Click="NavigationNextPreviousButton_Click"/>
23-
</Grid>
24-
<!-- The Stackpanel doesn't allow a binding for its children, so we use a ItemsControl instead -->
25-
<ItemsControl x:Name="icMenuItems" ItemsSource="{Binding MainNavigationItems}">
15+
<Grid>
16+
<Grid.ColumnDefinitions>
17+
<ColumnDefinition MaxWidth="150"/>
18+
<ColumnDefinition Width="6*"/>
19+
</Grid.ColumnDefinitions>
20+
<Grid.RowDefinitions>
21+
<RowDefinition Height="35"/>
22+
<RowDefinition Height="1*"/>
23+
</Grid.RowDefinitions>
24+
<Grid Height="{Binding ActualHeight, ElementName=tbContentTitle, Mode=OneWay}">
25+
<Grid.ColumnDefinitions>
26+
<ColumnDefinition Width="1*" />
27+
<ColumnDefinition Width="1*" />
28+
</Grid.ColumnDefinitions>
29+
<Button x:Name="btPreviousButton" Content="&lt;" Margin="5,5,5,5" Click="NavigationNextPreviousButton_Click"/>
30+
<Button x:Name="btNextButton" Content="&gt;" Grid.Column="1" Margin="5" Click="NavigationNextPreviousButton_Click"/>
31+
</Grid>
32+
<!-- The Stackpanel doesn't allow a binding for its children, so we use a ItemsControl instead -->
33+
<StackPanel Grid.Row="1"> <!-- TEMPORARY for login button -->
34+
<ItemsControl x:Name="icMenuItems" Grid.Row="1" ItemsSource="{Binding MainNavigationItems}">
2635
<ItemsControl.ItemsPanel>
2736
<ItemsPanelTemplate>
2837
<StackPanel IsItemsHost="True"/>
@@ -34,8 +43,11 @@
3443
</ItemContainerTemplate>
3544
</ItemsControl.ItemTemplate>
3645
</ItemsControl>
46+
<local:MainWindowNavigationItem Content="Login" ExtraNavigationInformation="" Click="Login_Click"/>
3747
</StackPanel>
38-
<TextBlock x:Name="tbContentTitle" DockPanel.Dock="Top" FontSize="22" FontWeight="Bold" Text="{Binding Title}"/>
39-
<Frame x:Name="frContent" NavigationUIVisibility="Hidden" Navigated="frContent_Navigated" Source="{Binding CurrentVisiblePage}" />
40-
</DockPanel>
48+
<TextBlock x:Name="tbContentTitle" Grid.Column="1" FontSize="22" FontWeight="Bold" Text="{Binding Title}"/>
49+
<ScrollViewer Grid.Column="1" Grid.Row="1" VerticalScrollBarVisibility="Auto" >
50+
<Frame x:Name="frContent" Grid.Column="1" Grid.Row="1" NavigationUIVisibility="Hidden" Navigated="frContent_Navigated" Source="{Binding CurrentVisiblePage}"/>
51+
</ScrollViewer>
52+
</Grid>
4153
</Window>

View/MainWindow.xaml.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,21 @@ private void frContent_Navigated(object sender, NavigationEventArgs e)
4444
{
4545
btPreviousButton.IsEnabled = ((Frame)sender).CanGoBack;
4646
btNextButton.IsEnabled = ((Frame)sender).CanGoForward;
47+
if (((Frame)sender).Content.GetType() == typeof(Page))
48+
{
49+
tbContentTitle.Text = ((Page)((Frame)sender).Content).Title;
50+
}
51+
}
52+
53+
private void MainWindowNavigationItem_Checked(object sender, RoutedEventArgs e)
54+
{
55+
56+
}
57+
58+
private void Login_Click(object sender, RoutedEventArgs e)
59+
{
60+
AuthenticationWindow authenticationWindow = new AuthenticationWindow();
61+
authenticationWindow.Show();
4762
}
4863
}
4964
}

View/MainWindowNavigationItem.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
xmlns:local="clr-namespace:View"
77
mc:Ignorable="d"
88
d:DesignHeight="50" d:DesignWidth="100"
9-
Style="{StaticResource {x:Type ToggleButton}}"
109
GroupName="MainNavigation">
11-
10+
<!-- Style="{StaticResource {x:Type ToggleButton}}"
11+
-->
1212
</RadioButton>

View/OpgevenRelaties.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<CheckBox Content="Zakelijk" Margin="79,36,0,0" Grid.Column="1" Height="15" VerticalAlignment="Top" HorizontalAlignment="Left" Width="99"/>
2727
<CheckBox Content="Vrienden" Margin="10,92,0,0" Grid.Column="1" Height="14" VerticalAlignment="Top" HorizontalAlignment="Left" Width="69"/>
2828
<CheckBox Content="Studiemaatje" Margin="79,92,0,0" Grid.Column="1" HorizontalAlignment="Left" Width="99" Height="14" VerticalAlignment="Top"/>
29-
<Frame Content="Hobby" Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" Grid.ColumnSpan="3" Background="Aqua" Source="HobbyOptionsView.xaml"/>
29+
<Frame Content="Hobby" Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" Grid.ColumnSpan="3" Background="{StaticResource BackgroundPrimary}" Source="HobbyOptionsView.xaml"/>
3030
<Button Content="Opslaan" Grid.Column="3" HorizontalAlignment="Center" Margin="0,24,0,0" VerticalAlignment="Top" Height="20" Width="59"/>
3131
<Button Content="Annuleren" Grid.Column="3" HorizontalAlignment="Center" VerticalAlignment="Top" Height="20" Width="59" Margin="0,65,0,0"/>
3232

View/ProfilePage.xaml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
d:DesignHeight="1920" d:DesignWidth="1080"
99
Title="Profile">
1010

11-
<Grid x:Name="AllGrids" Background="White">
11+
<Grid x:Name="AllGrids">
1212
<Grid.RowDefinitions>
1313
<RowDefinition Height="5*"/>
1414
<RowDefinition Height="35*"/>
@@ -27,7 +27,7 @@
2727
<ColumnDefinition Width="5*"/>
2828
</Grid.ColumnDefinitions>
2929
<Canvas x:Name="PhotoCarousel" Grid.Column="1" Grid.Row ="1" Grid.ColumnSpan="3" Grid.RowSpan="1" Background="#23000000"/>
30-
<Grid x:Name="MainInfoGrid" Grid.Column="2" Grid.Row="2" Background="#220046FF">
30+
<Grid x:Name="MainInfoGrid" Grid.Column="2" Grid.Row="2" Background="{StaticResource BackgroundSecundary}">
3131
<Grid.ColumnDefinitions>
3232
<ColumnDefinition Width="25*"/>
3333
<ColumnDefinition Width="25*"/>
@@ -39,19 +39,19 @@
3939
<RowDefinition Height="40*"/>
4040
</Grid.RowDefinitions>
4141
<Label x:Name="NameLabel" HorizontalAlignment="Center" Content="PETER JANSEN" Grid.ColumnSpan="4" Grid.RowSpan="1" FontSize="48"/>
42-
<Label x:Name="AgeLabel" Content="24 jaar" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Stretch" FontSize="20"/>
43-
<Label x:Name="LocationLabel" Content="Zwolle" Grid.Column="1" HorizontalAlignment="Center" Grid.Row="1" FontSize="20" VerticalAlignment="Stretch"/>
44-
<Label x:Name="SchoolNameLabel" Content="Windesheim" Grid.Column="2" HorizontalAlignment="Center" Grid.Row="1" FontSize="20" VerticalAlignment="Stretch"/>
45-
<Label x:Name="EducationLabel" Content="HBO-ICT" Grid.Column="3" HorizontalAlignment="Center" Grid.Row="1" FontSize="20" VerticalAlignment="Stretch"/>
42+
<Label x:Name="AgeLabel" Content="24 jaar" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Stretch"/>
43+
<Label x:Name="LocationLabel" Content="Zwolle" Grid.Column="1" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Stretch"/>
44+
<Label x:Name="SchoolNameLabel" Content="Windesheim" Grid.Column="2" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Stretch"/>
45+
<Label x:Name="EducationLabel" Content="HBO-ICT" Grid.Column="3" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Stretch"/>
4646
</Grid>
47-
<Grid x:Name="InterestsGrid" Grid.Column="2" Grid.Row="3" Background="#220046FF"/>
48-
<Grid x:Name="InformationTextGrid" Grid.Column="2" Grid.Row="4" Background="#220046FF">
49-
<TextBlock x:Name="DescriptionTextBox" TextWrapping="WrapWithOverflow" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="10,10,10,10" FontSize="18" Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."/>
47+
<Grid x:Name="InterestsGrid" Grid.Column="2" Grid.Row="3" Background="{StaticResource BackgroundSecundary}"/>
48+
<Grid x:Name="InformationTextGrid" Grid.Column="2" Grid.Row="4" Background="{StaticResource BackgroundSecundary}">
49+
<TextBlock x:Name="DescriptionTextBox" TextWrapping="WrapWithOverflow" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="10,10,10,10" Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."/>
5050
</Grid>
5151
<Grid/>
52-
<Grid x:Name="QAGrid" Grid.Column="2" Grid.Row="5" Background="#220046FF"/>
52+
<Grid x:Name="QAGrid" Grid.Column="2" Grid.Row="5" Background="{StaticResource BackgroundSecundary}"/>
5353
<Grid/>
54-
<Grid x:Name="PriorityGrid" Grid.Column="2" Grid.Row="6" Background="#220046FF">
54+
<Grid x:Name="PriorityGrid" Grid.Column="2" Grid.Row="6" Background="{StaticResource BackgroundSecundary}">
5555
<Grid.ColumnDefinitions>
5656
<ColumnDefinition Width="2*"/>
5757
<ColumnDefinition Width="8*"/>
@@ -65,26 +65,26 @@
6565
<RowDefinition Height="1*"/>
6666
<RowDefinition Height="1*"/>
6767
</Grid.RowDefinitions>
68-
<Label x:Name="PriorityLabelIntelligence" Grid.Column="0" Grid.Row="0" Content="Intelligentie" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
69-
<ProgressBar x:Name="IntelligenceProgressBar" Grid.Column="1" Grid.Row="0" Background="#220046FF" Margin="10,10,10,10" Value="50" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
68+
<Label x:Name="PriorityLabelIntelligence" Grid.Column="0" Grid.Row="0" Content="Intelligentie" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
69+
<ProgressBar x:Name="IntelligenceProgressBar" Grid.Column="1" Grid.Row="0" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="50" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
7070

71-
<Label x:Name="FysicsLabel" Grid.Column="0" Grid.Row="1" Content="Fysieke Activiteiten" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
72-
<ProgressBar x:Name="FysicsProgressBar" Grid.Column="1" Grid.Row="1" Background="#220046FF" Margin="10,10,10,10" Value="20" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
71+
<Label x:Name="FysicsLabel" Grid.Column="0" Grid.Row="1" Content="Fysieke Activiteiten" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
72+
<ProgressBar x:Name="FysicsProgressBar" Grid.Column="1" Grid.Row="1" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="20" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
7373

74-
<Label x:Name="ClubbingLabel" Grid.Column="0" Grid.Row="2" Content="Uitgaansleven" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
75-
<ProgressBar x:Name="ClubbingProgressBar" Grid.Column="1" Grid.Row="2" Background="#220046FF" Margin="10,10,10,10" Value="90" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
74+
<Label x:Name="ClubbingLabel" Grid.Column="0" Grid.Row="2" Content="Uitgaansleven" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
75+
<ProgressBar x:Name="ClubbingProgressBar" Grid.Column="1" Grid.Row="2" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="90" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
7676

77-
<Label x:Name="NatureLabel" Grid.Column="0" Grid.Row="3" Content="Natuur" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
78-
<ProgressBar x:Name="NatureProgressBar" Grid.Column="1" Grid.Row="3" Background="#220046FF" Margin="10,10,10,10" Value="3" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
77+
<Label x:Name="NatureLabel" Grid.Column="0" Grid.Row="3" Content="Natuur" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
78+
<ProgressBar x:Name="NatureProgressBar" Grid.Column="1" Grid.Row="3" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="3" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
7979

80-
<Label x:Name="PoliticsLabel" Grid.Column="0" Grid.Row="4" Content="Politiek" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
81-
<ProgressBar x:Name="PoliticsProgressBar" Grid.Column="1" Grid.Row="4" Background="#220046FF" Margin="10,10,10,10" Value="65" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
80+
<Label x:Name="PoliticsLabel" Grid.Column="0" Grid.Row="4" Content="Politiek" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
81+
<ProgressBar x:Name="PoliticsProgressBar" Grid.Column="1" Grid.Row="4" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="65" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
8282

83-
<Label x:Name="WorkLabel" Grid.Column="0" Grid.Row="5" Content="Werk prestaties" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
84-
<ProgressBar x:Name="WorkProgressBar" Grid.Column="1" Grid.Row="5" Background="#220046FF" Margin="10,10,10,10" Value="45" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
83+
<Label x:Name="WorkLabel" Grid.Column="0" Grid.Row="5" Content="Werk prestaties" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
84+
<ProgressBar x:Name="WorkProgressBar" Grid.Column="1" Grid.Row="5" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="45" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
8585

86-
<Label x:Name="ClimateLabel" Grid.Column="0" Grid.Row="6" Content="Klimaat" HorizontalAlignment="Stretch" VerticalAlignment="Center" FontSize="18" Margin="10,0,0,0"/>
87-
<ProgressBar x:Name="ClimateProgressBar" Grid.Column="1" Grid.Row="6" Background="#220046FF" Margin="10,10,10,10" Value="10" Foreground="#FF0615B0" MaxHeight="12" MinHeight="12"/>
86+
<Label x:Name="ClimateLabel" Grid.Column="0" Grid.Row="6" Content="Klimaat" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10,0,0,0"/>
87+
<ProgressBar x:Name="ClimateProgressBar" Grid.Column="1" Grid.Row="6" Background="{StaticResource BackgroundSecundary}" Margin="10,10,10,10" Value="10" Foreground="{StaticResource BackgroundQuaternary}" MaxHeight="12" MinHeight="12"/>
8888
</Grid>
8989

9090
</Grid>

0 commit comments

Comments
 (0)