-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoreAboutUs.xaml
45 lines (41 loc) · 1.75 KB
/
MoreAboutUs.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Controls:MetroWindow x:Class="Notepad.MoreAboutUs"
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:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Notepad"
mc:Ignorable="d"
TitleCaps="False"
WindowStartupLocation="CenterScreen"
GlowBrush="{DynamicResource AccentColorBrush}"
Title="MoreAboutUs" Height="250" Width="420">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Row="0"
Margin="12"
Grid.Column="0">
<Image Source="Resources/me_small.jpg"
Stretch="None"/>
</StackPanel>
<StackPanel Grid.Row="0"
Grid.Column="1"
Margin="5">
<TextBlock Margin="0 15 5 0"
Padding="12"
Width="220"
TextWrapping="WrapWithOverflow"
TextBlock.TextAlignment="Justify"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Text="{Binding Details, Mode=OneWay}">
</TextBlock>
</StackPanel>
</Grid>
</Controls:MetroWindow>