| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <Window x:Class="PRSDesktop.V6ProjectSelection"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PRSDesktop"
- xmlns:system="clr-namespace:System;assembly=System.Runtime"
- xmlns:wpf="clr-namespace:InABox.WPF;assembly=InABox.Wpf"
- xmlns:v6="clr-namespace:PRSDesktop.Integrations.V6"
- xmlns:classes="clr-namespace:Comal.Classes;assembly=PRSClasses"
- xmlns:grids="clr-namespace:PRSDesktop.Integrations.V6.Grids"
- mc:Ignorable="d"
- Title="Import from V6" Height="600" Width="1200" WindowStartupLocation="CenterScreen">
-
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="40"/>
- </Grid.RowDefinitions>
- <grids:V6ProjectGrid
- x:Name="Projects"
- OnSelectItem="Projects_OnOnSelectItem"
- ShowPrices = "true"/>
- <DockPanel
- Grid.Row="1"
- Margin="0,5,0,0"
- LastChildFill="False">
- <Button
- DockPanel.Dock="Right"
- Content="Cancel"
- Margin="5,0,0,0"
- Width="80"
- Click="Cancel_Click"/>
- <Button
- x:Name="Ok"
- DockPanel.Dock="Right"
- Margin="5,0,0,0"
- Width="80"
- Content="OK"
- IsEnabled="False"
- Click="OK_Click"/>
-
- </DockPanel>
-
- </Grid>
- </Window>
|