UpdateDatabaseFiles.xaml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <Window x:Class="PRSServer.Forms.Version9Update.UpdateDatabaseFiles"
  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:PRSServer.Forms.Version9Update"
  7. mc:Ignorable="d"
  8. Title="Update Database to Version 9" Height="500" Width="350"
  9. Loaded="Window_Loaded">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="Auto"/>
  14. </Grid.RowDefinitions>
  15. <local:UpdateDatabaseFilesGrid x:Name="Grid" Margin="5"
  16. Grid.Row="0"/>
  17. <DockPanel Grid.Row="1" LastChildFill="False"
  18. Margin="5,0,5,5">
  19. <Button Content="Cancel"
  20. DockPanel.Dock="Right"
  21. Padding="5"
  22. Click="Cancel_Click"/>
  23. <Button Content="Proceed"
  24. DockPanel.Dock="Right"
  25. Padding="5" Margin="0,0,5,0"
  26. Click="Proceed_Click"/>
  27. </DockPanel>
  28. </Grid>
  29. </Window>