Dispenser/DispenserUI/Views/Controls/LockedView.axaml

18 lines
707 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="1080"
Width="1920"
Background="White"
Cursor="No"
x:Class="DispenserUI.Views.Controls.LockedView">
<Grid>
<StackPanel VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Width="434" Height="318" Source="/Assets/UI/smallAI@2x.png" />
</StackPanel>
<Grid x:Name="WaterMark" Height="3000" Width="3000">
<!-- Background of the window -->
<Rectangle Fill="Gray" Opacity="0.2" />
</Grid>
</Grid>
</UserControl>