blob: 0ca35d4751922a348f510fa087c36d200a707a39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<Window
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="400"
d:DesignHeight="150"
x:Class="manager.MessageBox"
Title="Prompt"
SizeToContent="WidthAndHeight"
WindowStartupLocation="CenterOwner"
CanResize="False"
ShowInTaskbar="False"
>
<StackPanel Margin="20" Spacing="16">
<TextBlock x:Name="MessageText" Text="" FontSize="14" />
<StackPanel
x:Name="ButtonPanel"
Orientation="Horizontal"
HorizontalAlignment="Right"
Spacing="8"
/>
</StackPanel>
</Window>
|