MainPage.xaml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Page x:Class="LR1.MainPage"
  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:LR1"
  7. mc:Ignorable="d"
  8. d:DesignHeight="500" d:DesignWidth="800"
  9. Title="MainPage">
  10. <Grid Background="{DynamicResource BackgroundStyle}">
  11. <Label Style="{DynamicResource LabaelStyle}" Content="Система внутреннего учета инвестиционной компании" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top"/>
  12. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,70,0,0" FontSize="16" Height="30" Width="125" >
  13. <Hyperlink NavigateUri="Workers.xaml">
  14. Сотрудники
  15. </Hyperlink>
  16. </TextBlock>
  17. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,115,0,0" Height="30" Width="125">
  18. <Hyperlink>
  19. Клиенты
  20. </Hyperlink>
  21. </TextBlock>
  22. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,160,0,0" Height="30" Width="125">
  23. <Hyperlink>
  24. Договора
  25. </Hyperlink>
  26. </TextBlock>
  27. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,205,0,0" Height="30" Width="125">
  28. <Hyperlink>
  29. Ценные бумаги
  30. </Hyperlink>
  31. </TextBlock>
  32. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,250,0,0" Height="30" Width="125">
  33. <Hyperlink>
  34. Сделки
  35. </Hyperlink>
  36. </TextBlock>
  37. <TextBlock Style ="{StaticResource TextBlockStyle}" Margin="40,295,0,0" Height="35" Width="125">
  38. <Hyperlink>
  39. Справка
  40. </Hyperlink>
  41. </TextBlock>
  42. <Button Style ="{DynamicResource ButtonStyle}" Content="Выход" HorizontalAlignment="Left" Margin="40,360,0,0" VerticalAlignment="Top" Height="28" Width="88" FontSize="16" Click="Button_Click" />
  43. </Grid>
  44. </Page>