HeaderPage.xaml 727 B

12345678910111213141516
  1. <Page x:Class="DontHarmDesktop.Pages.HeaderPage"
  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:DontHarmDesktop.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="HeaderPage"
  10. Background="{StaticResource SecondaryColor}">
  11. <StackPanel Orientation="Horizontal">
  12. <Image Source="/Pages/Logo.png" Width="64" Height="64"></Image>
  13. <TextBlock>Не навреди</TextBlock>
  14. </StackPanel>
  15. </Page>