LogikalProjectImport.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Window x:Class="PRSDesktop.LogikalProjectImport"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop"
  7. mc:Ignorable="d"
  8. Title="Import From Logikal"
  9. Height="800"
  10. Width="800"
  11. Loaded="Window_Loaded"
  12. WindowStartupLocation="CenterScreen">
  13. <Grid Margin="5">
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="*"/>
  16. <ColumnDefinition Width="80"/>
  17. <ColumnDefinition Width="80"/>
  18. </Grid.ColumnDefinitions>
  19. <Grid.RowDefinitions>
  20. <RowDefinition Height="*"/>
  21. <RowDefinition Height="40"/>
  22. </Grid.RowDefinitions>
  23. <local:LogikalProjectGrid
  24. x:Name="Projects"
  25. Grid.Row="0"
  26. Grid.Column="0"
  27. Grid.ColumnSpan="3"/>
  28. <Label
  29. x:Name="Status"
  30. Grid.Row="1"
  31. Grid.Column="0"
  32. Margin="5,0,0,0"
  33. VerticalContentAlignment="Center"
  34. Content="Waiting for Response..." />
  35. <Button
  36. Grid.Row="1"
  37. Grid.Column="1"
  38. Content="OK"
  39. Margin="5,5,0,0"
  40. Click="OK_Click"/>
  41. <Button
  42. Grid.Row="1"
  43. Grid.Column="2"
  44. Content="Cancel"
  45. Margin="5,5,0,0"
  46. Click="Cancel_Click"/>
  47. </Grid>
  48. </Window>