Changed a lot LOL
This commit is contained in:
40
PartSource.Backoffice/MainWindow.xaml
Normal file
40
PartSource.Backoffice/MainWindow.xaml
Normal 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>
|
||||
Reference in New Issue
Block a user