| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Window x:Class="PRSDesktop.LogikalProjectImport"
- 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"
- mc:Ignorable="d"
- Title="Import From Logikal"
- Height="800"
- Width="800"
- Loaded="Window_Loaded"
- WindowStartupLocation="CenterScreen">
- <Grid Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="80"/>
- <ColumnDefinition Width="80"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="40"/>
- </Grid.RowDefinitions>
- <local:LogikalProjectGrid
- x:Name="Projects"
- Grid.Row="0"
- Grid.Column="0"
- Grid.ColumnSpan="3"/>
- <Label
- x:Name="Status"
- Grid.Row="1"
- Grid.Column="0"
- Margin="5,0,0,0"
- VerticalContentAlignment="Center"
- Content="Waiting for Response..." />
- <Button
- Grid.Row="1"
- Grid.Column="1"
- Content="OK"
- Margin="5,5,0,0"
- Click="OK_Click"/>
- <Button
- Grid.Row="1"
- Grid.Column="2"
- Content="Cancel"
- Margin="5,5,0,0"
- Click="Cancel_Click"/>
- </Grid>
- </Window>
|