chr
2025-03-04 3f62d18e4361cd1d7a49c126765d95b2ad9c8246
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Window x:Class="PluginListener.Alert"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        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"
        xmlns:local="clr-namespace:Test1"
        mc:Ignorable="d"
        ShowInTaskbar="False"
        Topmost="True" Height="Auto" Width="Auto"
        Title="提示">
    <StackPanel HorizontalAlignment="Center">
        <Label x:Name="label"/>
        <Button Click="Button_Click">确认</Button>
    </StackPanel>
</Window>