PasswordWindow.xaml 845 B

1234567891011121314151617
  1. <Window x:Class="ComPDFKit.Controls.Common.PasswordWindow"
  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:ComPDFKit.Controls.Common"
  7. ResizeMode="NoResize"
  8. mc:Ignorable="d"
  9. Title="PasswordWindow"
  10. WindowStyle="None"
  11. WindowStartupLocation="CenterScreen"
  12. MouseLeftButtonDown="PasswordWindow_MouseLeftButtonDown"
  13. Height="226" Width="534" >
  14. <Grid>
  15. <local:PasswordDialog x:Name="PasswordDialog" Loaded="PasswordDialog_Loaded" Unloaded="PasswordDialog_Unloaded"></local:PasswordDialog>
  16. </Grid>
  17. </Window>