18 lines
707 B
Plaintext
18 lines
707 B
Plaintext
|
<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>
|