16 lines
910 B
XML
16 lines
910 B
XML
<local:FrameBase x:Class="BeWoLauncher.View.Frames.LoadingScreen"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:BeWoLauncher.View.Frames"
|
|
mc:Ignorable="d"
|
|
Width="400" Height="200" Loaded="UserControl_Loaded">
|
|
<Grid>
|
|
<DockPanel Margin="0">
|
|
<Label Foreground="#FF000000" FontSize="12" FontWeight="Bold" DockPanel.Dock="Top" HorizontalAlignment="Left" Margin="50,30,0,0">Starte BeWoPlaner</Label>
|
|
<ProgressBar DockPanel.Dock="Top" Height="20" IsIndeterminate="True" Margin="10" ></ProgressBar>
|
|
</DockPanel>
|
|
</Grid>
|
|
</local:FrameBase>
|