Changed a lot LOL

This commit is contained in:
2020-11-04 17:08:13 -05:00
parent d06925204d
commit 3f6faacab8
21 changed files with 489 additions and 64 deletions

View File

@@ -0,0 +1,40 @@
<Window xmlns:Components="clr-namespace:PartSource.Backoffice.Components"
x:Class="PartSource.Backoffice.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:local="clr-namespace:PartSource.Backoffice"
mc:Ignorable="d"
Title="MainWindow" Height="262" Width="520" Background="#222" WindowStartupLocation="CenterScreen" ResizeMode="NoResize">
<Window.Resources>
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="#FFF" />
<Setter Property="FontWeight" Value="DemiBold"/>
<Setter Property="Margin" Value="0,0,10,10" />
<Setter Property="Padding" Value="0"/>
</Style>
<Style TargetType="Label">
<Setter Property="Foreground" Value="#CCC" />
<Setter Property="Padding" Value="0"/>
</Style>
<Style TargetType="CheckBox">
<Setter Property="Foreground" Value="#FFF"/>
<Setter Property="Margin" Value="0,0,0,5"/>
</Style>
<Style TargetType="Button">
<Setter Property="Margin" Value="10, 20"/>
<Setter Property="Padding" Value="25, 5" />
</Style>
</Window.Resources>
<StackPanel>
<Components:TaskSetup />
<Components:ProgressDisplay />
<Button x:Name="Update" Content="Start" HorizontalAlignment="left" Click="Update_Click" />
</StackPanel>
</Window>