ReportForEvent.xaml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Page x:Class="PP_Ven_MosS.Pages.ReportForEvent"
  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:PP_Ven_MosS.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="ReportForEvent">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="35"></RowDefinition>
  13. <RowDefinition></RowDefinition>
  14. <RowDefinition Height="70"></RowDefinition>
  15. </Grid.RowDefinitions>
  16. <StackPanel Grid.Row="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
  17. <TextBlock Text="Создание отчета" FontWeight="Bold" FontSize="30" Margin="100,0"></TextBlock>
  18. </StackPanel>
  19. <StackPanel Grid.Row="1" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Uid="{Binding Id_event}">
  20. <GroupBox Width="500" Height="50" Header="Название мероприятия">
  21. <TextBlock x:Name="txtTitleEv" MinWidth="500"/>
  22. </GroupBox>
  23. <GroupBox Width="500" Height="50" Header="Описание">
  24. <TextBlock x:Name="txtDesc" MinWidth="500" />
  25. </GroupBox>
  26. <GroupBox Width="500" Height="50" Header="Дата">
  27. <TextBlock x:Name="txtDate" MinWidth="500"> </TextBlock>
  28. </GroupBox>
  29. <GroupBox Width="500" Height="50" Header="Зал">
  30. <TextBlock x:Name="txtPlace" MinWidth="500"></TextBlock>
  31. </GroupBox>
  32. <GroupBox Width="500" Height="50" Header="Ссылка">
  33. <TextBox x:Name="txtURL" MinWidth="500"></TextBox>
  34. </GroupBox>
  35. </StackPanel>
  36. <StackPanel Grid.Row="3" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
  37. <Button Height="30" Content="Сохранить" FontSize="20" Style="{StaticResource BtnSt}" Name="Save" Click="Save_Click"></Button>
  38. <Button Height="30" Content="Выйти" FontSize="20" Style="{StaticResource BtnSt}" Name="Exit" Click="Exit_Click"></Button>
  39. </StackPanel>
  40. </Grid>
  41. </Page>