-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutWindow.xaml
27 lines (27 loc) · 1.42 KB
/
AboutWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window x:Class="CardFilePBX.AboutWindow"
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:CardFilePBX"
mc:Ignorable="d"
Title="О программе" Height="210" Width="373" ResizeMode="NoResize">
<Grid>
<StackPanel Margin="10">
<TextBlock Text="CardFilePBX" HorizontalAlignment="Center" FontWeight="Bold" FontSize="16" />
<TextBlock Text="Картотека абонентов междугородной телефонной станции" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 0 0 10"/>
<DockPanel>
<TextBlock Margin="0 0 0 7" Text="Версия программы: "/>
<TextBlock FontWeight="Bold" Text="{Binding Version}"/>
</DockPanel>
<DockPanel>
<TextBlock Text="Разработчики: "/>
<StackPanel Orientation="Vertical">
<TextBlock FontWeight="Bold" Text="Рыжков Владимир Сергеевич" Margin="0 0 0 3"/>
<TextBlock FontWeight="Bold" Text="Стафеев Данил Вадимович"/>
</StackPanel>
</DockPanel>
</StackPanel>
<TextBlock Text="2022" VerticalAlignment="Bottom" HorizontalAlignment="Center" Margin="0 0 0 8"/>
</Grid>
</Window>