| 1234567891011121314151617 |
- <Window x:Class="DeviceCenter.views.ExitConfirm"
- 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:DeviceCenter.views"
- mc:Ignorable="d"
- Title="退出" Height="159.375" Width="234.219" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
- <StackPanel Orientation="Vertical" Margin="10 10 10 10">
- <Label Content="请输入密码"/>
- <PasswordBox Margin="0 5 0 0" Height="30" Name="password" VerticalContentAlignment="Center"/>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 10 0 0">
- <Button Content="取消" Width="45" Height="25" Name="cancel" Click="cancel_Click"/>
- <Button Content="确认" Margin="20 0 0 0" Width="45" Height="25" Name="confirm" Click="confirm_Click"/>
- </StackPanel>
- </StackPanel>
- </Window>
|