MainWindow.xaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Window x:Class="Лаб1.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Лаб1"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="715" Width="1200"
  9. WindowStartupLocation="CenterScreen"
  10. Background="Transparent"
  11. AllowsTransparency="True"
  12. WindowStyle="None">
  13. <Grid>
  14. <Grid.Background>
  15. <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
  16. <GradientStop Color="#FF87A0DE" Offset="0"/>
  17. <GradientStop Color="Aqua" Offset="0.5"/>
  18. <GradientStop Color="#FF009CFF" Offset="1"/>
  19. </LinearGradientBrush>
  20. </Grid.Background>
  21. <StackPanel Background="{StaticResource BackgroundWindowResource}">
  22. <TextBlock Style="{StaticResource hedderTextBlockResource}">
  23. Система внутеннего учета инвестиционной компании
  24. </TextBlock>
  25. <TextBlock Style="{StaticResource baseTextBlockResource}">
  26. <Hyperlink NavigateUri="PageEmployee.xaml"> Сотрудники</Hyperlink>
  27. </TextBlock>
  28. <TextBlock Style="{StaticResource baseTextBlockResource}">
  29. <Hyperlink> Клиенты </Hyperlink>
  30. </TextBlock>
  31. <TextBlock Style="{StaticResource baseTextBlockResource}">
  32. <Hyperlink> Договора </Hyperlink>
  33. </TextBlock>
  34. <TextBlock Style="{StaticResource baseTextBlockResource}">
  35. <Hyperlink> Ценные бумаги </Hyperlink>
  36. </TextBlock>
  37. <TextBlock Style="{StaticResource baseTextBlockResource}">
  38. <Hyperlink> Сделки </Hyperlink>
  39. </TextBlock>
  40. <TextBlock Style="{StaticResource baseTextBlockResource}">
  41. <Hyperlink> Справка </Hyperlink>
  42. </TextBlock>
  43. <Button Style="{StaticResource buttonResource}" Command="Close">Выход
  44. </Button>
  45. </StackPanel>
  46. </Grid>
  47. </Window>