aboutsummaryrefslogtreecommitdiff
path: root/manager/MessageBox.axaml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-22 07:21:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-22 07:21:10 +0800
commit5e16ca4f41b2ae0b1e0d57be340cbf28286fe1f7 (patch)
tree72e4afcc6b440e3121af79b245e6bd04c7398b7a /manager/MessageBox.axaml
parente6bf6f5091caf3b4366894643671bc4586794cda (diff)
feat(manager): implement GUI dashboard with config management
Diffstat (limited to 'manager/MessageBox.axaml')
-rw-r--r--manager/MessageBox.axaml25
1 files changed, 25 insertions, 0 deletions
diff --git a/manager/MessageBox.axaml b/manager/MessageBox.axaml
new file mode 100644
index 0000000..0ca35d4
--- /dev/null
+++ b/manager/MessageBox.axaml
@@ -0,0 +1,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>