DiagramPage.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <Page x:Class="WpfApp1.DiagramPage"
  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:WpfApp1"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="DiagramPage">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="75"/>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="75"/>
  15. </Grid.RowDefinitions>
  16. <Image Source="/Resources/logo.png" Margin="541,0,3,0"/>
  17. <Grid Background="#FF90D5FF" Panel.ZIndex="-2"></Grid>
  18. <Grid Grid.Row="2" Background="#FF90D5FF"></Grid>
  19. <Frame NavigationUIVisibility="Hidden" ContentRendered="MainFrame_ContentRendered" Grid.Row="1" Name="MainFrame"></Frame>
  20. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
  21. <Button Content="Экспорт в Excel" Width="175" x:Name="BtnExportToExcel" Click="BtnExportToExcel_Click"/>
  22. </StackPanel>
  23. </Grid>
  24. </Page>