Newer
Older
<UserControl x:Class="VECTO3GUI2020.Views.AboutView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VECTO3GUI2020.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800" MaxHeight="400">
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5"/>
<ColumnDefinition/>
<ColumnDefinition Width="5"/>
</Grid.ColumnDefinitions>
<Grid Grid.Column ="1">
<Grid.RowDefinitions>
<RowDefinition Height="10"/>
<RowDefinition/>
<RowDefinition Height="38"/>
<RowDefinition Height="115"/>
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<Grid Grid.Row="1">
<Image HorizontalAlignment="Center" VerticalAlignment="Center">
<Image.Source>
<BitmapImage UriSource="../Resources/Images/VECTO-About.png"/>
</Image.Source>
</Image>
</Grid>
<Grid Grid.Row="2" Margin="0,5,0,0">
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" Margin="5,0,0,0">
<TextBlock>
<Hyperlink NavigateUri="{Binding EUPLLink}" Command="{Binding EUPLLinkClickedCommand}">
<TextBlock Text="VECTO is licensed under EUPL 1.1+"/>
</Hyperlink>
</TextBlock>
<TextBlock Text="Copyright © 2012-2019 European Union"/>
</StackPanel>
</Grid>
<Grid Grid.Row="3">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid Grid.Column="0" Margin="10,30,0,0" >
<StackPanel Orientation="Vertical" HorizontalAlignment="Left">
<TextBlock Text="Developed on behalf of the"/>
<TextBlock Text="European Commission DG CLIMA" Margin="20,0,0,0"/>
</StackPanel>
</Grid>
<Grid Grid.Column="1">
<Button Command="{Binding JrcPicClickedCommand}">
<Button.Template>
<ControlTemplate>
<Image HorizontalAlignment="Center" VerticalAlignment="Center">
<Image.Source>
<BitmapImage UriSource="../Resources/Images/JRC-About.png"/>
</Image.Source>
</Image>
</ControlTemplate>
</Button.Template>
</Button>
</Grid>
</Grid>
<Grid Grid.Row="4">
<StackPanel Orientation="Horizontal" Margin="10,0,0,0">
<TextBlock Text="Support Contact:"/>
<TextBlock Margin="5,0,0,0">
<Hyperlink NavigateUri="{Binding JRCMail}" Command="{Binding MailClickedCommand}" >
<TextBlock Text="jrc-vecto@ec.europa.eu"/>
</Hyperlink>
</TextBlock>
</StackPanel>
</Grid>
</Grid>
</Grid>
</UserControl>