diff --git a/SketchNow/Views/MainWindow.xaml b/SketchNow/Views/MainWindow.xaml
index 35f352e..c5b056c 100644
--- a/SketchNow/Views/MainWindow.xaml
+++ b/SketchNow/Views/MainWindow.xaml
@@ -8,8 +8,9 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:properties="clr-namespace:SketchNow.Properties"
xmlns:system="clr-namespace:System;assembly=System.Runtime"
+ xmlns:valueConverters="http://schemas.superdev.ch/valueconverters/2016/xaml"
xmlns:views="clr-namespace:SketchNow.Views"
- xmlns:vms="clr-namespace:SketchNow.ViewModels" xmlns:valueConverters="http://schemas.superdev.ch/valueconverters/2016/xaml"
+ xmlns:vms="clr-namespace:SketchNow.ViewModels"
Title="SketchNow"
Width="800"
Height="450"
@@ -79,15 +80,14 @@
+
+
+
-
-
-
+
@@ -95,40 +95,56 @@
+ HorizontalScrollBarVisibility="Auto"
+ VerticalScrollBarVisibility="Auto">
+ HorizontalAlignment="Right"
+ VerticalAlignment="Bottom"
+ Orientation="Horizontal">
+ Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}"
+ Content="{x:Static properties:Resource.Close}"
+ IsCancel="True"
+ Style="{StaticResource MaterialDesignFlatButton}" />
-
+
+
+
-
-
+
+ VerticalAlignment="Bottom"
+ MessageQueue="{Binding MessageQueue}" />
+ Margin="0,0,0,6"
+ VerticalAlignment="Bottom"
+ IsIndeterminate="{Binding Progress.IsIndeterminate}"
+ Visibility="{Binding Progress.IsVisible, Converter={StaticResource BoolToVisibilityConverter}}"
+ Value="{Binding Progress.Value}" />
\ No newline at end of file