| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <Window x:Class="PRSDesktop.Integrations.V6.V6ElevationSelection"
- 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.Integrations.V6"
- xmlns:grids="clr-namespace:PRSDesktop.Integrations.V6.Grids"
- xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
- xmlns:prsDesktop="clr-namespace:PRSDesktop"
- mc:Ignorable="d"
- Title="Import From V6" Height="800" Width="1200" WindowStartupLocation="CenterScreen"
- Loaded="V6ElevationSelection_OnLoaded">
-
- <Grid Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="80"/>
- <ColumnDefinition Width="80"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="40"/>
- </Grid.RowDefinitions>
-
- <Grid
- Grid.Row="0"
- Grid.Column="0"
- Grid.ColumnSpan="3">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width ="500" x:Name="ProjectsColumn"/>
- <ColumnDefinition Width ="Auto" x:Name="SplitterColumn"/>
- <ColumnDefinition Width ="*"/>
- </Grid.ColumnDefinitions>
-
- <grids:V6ProjectGrid
- x:Name="Projects"
- Grid.Column="0"
- OnSelectItem="Projects_OnOnSelectItem"
- />
-
- <syncfusion:SfGridSplitter
- Grid.Column="1"
- Grid.Row="0"
- Width="4"
- VerticalAlignment="Stretch"
- Background="Transparent"
- ResizeBehavior="PreviousAndNext"
- Template="{StaticResource VerticalSplitter}"/>
- <grids:V6ElevationGrid
- x:Name="Elevations"
- Grid.Column="2"
- OnSelectItem="Elevations_OnOnSelectItem"/>
- </Grid>
-
-
-
- <Button
- x:Name="OK"
- Grid.Row="1"
- Grid.Column="1"
- Content="OK"
- Margin="5,5,0,0"
- Click="OK_Click"
- IsEnabled="False"/>
- <Button
- x:Name="Cancel"
- Grid.Row="1"
- Grid.Column="2"
- Content="Cancel"
- Margin="5,5,0,0"
- Click="Cancel_Click"/>
- </Grid>
- </Window>
|