Retail_manager/RMWPFUserInterface/Views/StatusInfoView.xaml
s459315 7c40488938 Add dialog box and check permissions
Checks if user if authorized if not message box poppes up
2022-08-06 17:04:09 +02:00

17 lines
859 B
XML

<UserControl x:Class="RMWPFUserInterface.Views.StatusInfoView"
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:RMWPFUserInterface.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<StackPanel Orientation="Vertical">
<TextBlock x:Name="Header" FontSize="20" FontWeight="Bold" Margin="10" />
<TextBlock x:Name="Message" FontSize="18" Margin="10" />
<Button x:Name="Close" Padding="10" Margin="20">Close</Button>
</StackPanel>
</Grid>
</UserControl>