25 lines
992 B
XML
25 lines
992 B
XML
<Window x:Class="EmployeeManager.View.MessageWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Сообщение"
|
|
Height="200" Width="400"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Background="#0D2D4F">
|
|
<Grid>
|
|
<!-- Текст сообщения -->
|
|
<TextBlock Text="Ваше сообщение здесь"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
FontSize="16" FontWeight="Bold"
|
|
Foreground="#FFFFFF"
|
|
Margin="0,0,0,40"/>
|
|
|
|
<!-- Кнопка "Ок" -->
|
|
<Button Content="Ок"
|
|
Width="100" Height="40"
|
|
HorizontalAlignment="Center" VerticalAlignment="Top"
|
|
Margin="0,114,0,0"
|
|
Style="{StaticResource RoundedButtonStyle}" />
|
|
</Grid>
|
|
</Window>
|