123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Window x:Class="Лаб1.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Лаб1"
- mc:Ignorable="d"
- Title="MainWindow" Height="715" Width="1200"
- WindowStartupLocation="CenterScreen"
- Background="Transparent"
- AllowsTransparency="True"
- WindowStyle="None">
-
- <Grid>
- <Grid.Background>
- <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
- <GradientStop Color="#FF87A0DE" Offset="0"/>
- <GradientStop Color="Aqua" Offset="0.5"/>
- <GradientStop Color="#FF009CFF" Offset="1"/>
- </LinearGradientBrush>
- </Grid.Background>
- <StackPanel Background="{StaticResource BackgroundWindowResource}">
- <TextBlock Style="{StaticResource hedderTextBlockResource}">
- Система внутеннего учета инвестиционной компании
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink NavigateUri="PageEmployee.xaml"> Сотрудники</Hyperlink>
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink> Клиенты </Hyperlink>
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink> Договора </Hyperlink>
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink> Ценные бумаги </Hyperlink>
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink> Сделки </Hyperlink>
- </TextBlock>
- <TextBlock Style="{StaticResource baseTextBlockResource}">
- <Hyperlink> Справка </Hyperlink>
- </TextBlock>
- <Button Style="{StaticResource buttonResource}" Command="Close">Выход
- </Button>
- </StackPanel>
- </Grid>
- </Window>
|