| 1234567891011121314151617181920212223242526272829 |
- <Window x:Class="PRSServer.Forms.Version9Update.UpdateDatabaseFiles"
- 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:PRSServer.Forms.Version9Update"
- mc:Ignorable="d"
- Title="Update Database to Version 9" Height="500" Width="350"
- Loaded="Window_Loaded">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <local:UpdateDatabaseFilesGrid x:Name="Grid" Margin="5"
- Grid.Row="0"/>
- <DockPanel Grid.Row="1" LastChildFill="False"
- Margin="5,0,5,5">
- <Button Content="Cancel"
- DockPanel.Dock="Right"
- Padding="5"
- Click="Cancel_Click"/>
- <Button Content="Proceed"
- DockPanel.Dock="Right"
- Padding="5" Margin="0,0,5,0"
- Click="Proceed_Click"/>
- </DockPanel>
- </Grid>
- </Window>
|