-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPluginResultWindow.axaml
More file actions
47 lines (43 loc) · 1.75 KB
/
PluginResultWindow.axaml
File metadata and controls
47 lines (43 loc) · 1.75 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<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="300"
x:Class="ShowWrite.PluginResultWindow"
Title="扫描结果"
Width="450"
SizeToContent="Height"
WindowStartupLocation="CenterOwner"
CanResize="False"
Background="#2D2D2D"
ExtendClientAreaToDecorationsHint="True"
ExtendClientAreaChromeHints="NoChrome"
ExtendClientAreaTitleBarHeightHint="-1">
<Border CornerRadius="12" Padding="24">
<StackPanel Spacing="16">
<TextBlock x:Name="TitleText"
Text="扫描结果"
FontSize="20"
FontWeight="Bold"
Foreground="White"
HorizontalAlignment="Center"/>
<TextBlock x:Name="ResultText"
Text=""
FontSize="16"
Foreground="White"
TextWrapping="Wrap"
HorizontalAlignment="Center"
MaxWidth="380"/>
<TextBlock x:Name="TypeText"
Text=""
FontSize="12"
Foreground="#B4B4B4"
HorizontalAlignment="Center"/>
<StackPanel x:Name="ButtonPanel"
Orientation="Horizontal"
HorizontalAlignment="Center"
Spacing="12">
</StackPanel>
</StackPanel>
</Border>
</Window>