mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-28 16:46:25 +00:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<UserControl x:Class="Breath_of_the_Wild_Multiplayer.MVVM.View.LoadingView"
|
|
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:Breath_of_the_Wild_Multiplayer.MVVM.View"
|
|
xmlns:viewModel="clr-namespace:Breath_of_the_Wild_Multiplayer.MVVM.ViewModel"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<UserControl.DataContext>
|
|
<viewModel:LoadingModel/>
|
|
</UserControl.DataContext>
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="0.4*"/>
|
|
<ColumnDefinition Width="0.6*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Control Style="{StaticResource LoadingAnimationStyle}" HorizontalAlignment="Right"/>
|
|
|
|
<Label
|
|
Content="{Binding Message, NotifyOnSourceUpdated=True}"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Center"
|
|
Foreground="White"
|
|
FontFamily="Roboto"
|
|
FontWeight="Bold"
|
|
FontSize="36"/>
|
|
</Grid>
|
|
</UserControl>
|