IAPCompareDialog.xaml 796 B

123456789101112131415161718192021
  1. <UserControl
  2. x:Class="PDF_Office.Views.Dialog.ServiceDialog.IAPCompareDialog"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Office.Views.Dialog.ServiceDialog"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. Width="586"
  10. Height="800"
  11. d:DesignHeight="450"
  12. d:DesignWidth="800"
  13. prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
  14. mc:Ignorable="d">
  15. <Grid>
  16. <Grid.RowDefinitions>
  17. <RowDefinition />
  18. <RowDefinition />
  19. </Grid.RowDefinitions>
  20. </Grid>
  21. </UserControl>