StartPage.xaml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <Page x:Class="WindowedMyApp.StartPage"
  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:WindowedMyApp"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="StartPage">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="50"/>
  13. <RowDefinition Height="*"/>
  14. </Grid.RowDefinitions>
  15. <Grid Background="BlueViolet">
  16. <TextBlock Grid.Row="0" Text="Здесь могла быть именно ваша реклама!" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Chartreuse"/>
  17. </Grid>
  18. <StackPanel Grid.Row="1" VerticalAlignment="Center" Orientation="Horizontal">
  19. <StackPanel Orientation="Vertical" Margin="20 0 20 0">
  20. <TextBlock Text="Название: ">
  21. <Label x:Name="nameTour1"/>
  22. </TextBlock>
  23. <TextBlock Text="Дата начала: ">
  24. <Label x:Name="dateStartTour1"/>
  25. </TextBlock>
  26. <TextBlock Text="Дата окончания: ">
  27. <Label x:Name="dateFinishTour1"/>
  28. </TextBlock>
  29. <TextBlock Text="Стоимость: ">
  30. <Label x:Name="costTour1"/>
  31. </TextBlock>
  32. </StackPanel>
  33. <StackPanel Orientation="Vertical" Margin="20 0 20 0">
  34. <TextBlock Text="Название: ">
  35. <Label x:Name="nameTour2"/>
  36. </TextBlock>
  37. <TextBlock Text="Дата начала: ">
  38. <Label x:Name="dateStartTour2"/>
  39. </TextBlock>
  40. <TextBlock Text="Дата окончания: ">
  41. <Label x:Name="dateFinishTour2"/>
  42. </TextBlock>
  43. <TextBlock Text="Стоимость: ">
  44. <Label x:Name="costTour2"/>
  45. </TextBlock>
  46. </StackPanel>
  47. <StackPanel Orientation="Vertical" Margin="20 0 20 0">
  48. <TextBlock Text="Название: ">
  49. <Label x:Name="nameTour3"/>
  50. </TextBlock>
  51. <TextBlock Text="Дата начала: ">
  52. <Label x:Name="dateStartTour3"/>
  53. </TextBlock>
  54. <TextBlock Text="Дата окончания: ">
  55. <Label x:Name="dateFinishTour3"/>
  56. </TextBlock>
  57. <TextBlock Text="Стоимость: ">
  58. <Label x:Name="costTour3"/>
  59. </TextBlock>
  60. </StackPanel>
  61. </StackPanel>
  62. </Grid>
  63. </Page>