MainWindow.xaml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Window x:Class="WpfApp2.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. mc:Ignorable="d"
  7. Title="MainWindow" Height="715"
  8. 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="Aquamarine" Offset="0"/>
  17. <GradientStop Color="#BADFE7" Offset="0.5"/>
  18. <GradientStop Color="#4E90A0" Offset="1"/>
  19. </LinearGradientBrush>
  20. </Grid.Background>
  21. <StackPanel Background="{StaticResource BackgroundWindowResource}" HorizontalAlignment="Center" Width="1198" Margin="0,0,0,-10">
  22. <TextBlock Style="{StaticResource hederTextBlockResource}">
  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">Выход</Button>
  44. </StackPanel>
  45. </Grid>
  46. </Window>