ExitConfirm.xaml 1.1 KB

1234567891011121314151617
  1. <Window x:Class="DeviceCenter.views.ExitConfirm"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:DeviceCenter.views"
  7. mc:Ignorable="d"
  8. Title="退出" Height="159.375" Width="234.219" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9. <StackPanel Orientation="Vertical" Margin="10 10 10 10">
  10. <Label Content="请输入密码"/>
  11. <PasswordBox Margin="0 5 0 0" Height="30" Name="password" VerticalContentAlignment="Center"/>
  12. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 10 0 0">
  13. <Button Content="取消" Width="45" Height="25" Name="cancel" Click="cancel_Click"/>
  14. <Button Content="确认" Margin="20 0 0 0" Width="45" Height="25" Name="confirm" Click="confirm_Click"/>
  15. </StackPanel>
  16. </StackPanel>
  17. </Window>