17 lines
859 B
Plaintext
17 lines
859 B
Plaintext
|
<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>
|