|
4 | 4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 | 5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 | 6 | mc:Ignorable="d" |
7 | | - Title="{Binding WindowTitle}" Height="300" Width="500" |
| 7 | + Title="{Binding WindowTitle}" Height="330" Width="500" |
8 | 8 | ResizeMode="NoResize" Background="{StaticResource WindowBackgroundBrush}" |
9 | 9 | WindowStartupLocation="CenterScreen" Icon="{StaticResource WindowIcon}" |
10 | 10 | DataContext="{Binding About, Source={StaticResource Locator}}"> |
|
21 | 21 | <RowDefinition/> |
22 | 22 | <RowDefinition/> |
23 | 23 | <RowDefinition/> |
| 24 | + <RowDefinition/> |
24 | 25 | <RowDefinition Height="10"/> |
25 | 26 | <RowDefinition/> |
26 | 27 | </Grid.RowDefinitions> |
|
29 | 30 | <ColumnDefinition Width="100"/> |
30 | 31 | <ColumnDefinition Width="19*"/> |
31 | 32 | </Grid.ColumnDefinitions> |
32 | | - <Image Source="{StaticResource EzLogo}" Grid.RowSpan="8"/> |
| 33 | + <Image Source="{StaticResource EzLogo}" Grid.RowSpan="9"/> |
33 | 34 |
|
34 | 35 | <StackPanel Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2"> |
35 | 36 | <Label Content="{Binding AppTitleLabel}" Style="{StaticResource AppTitleStyle}"/> |
|
56 | 57 |
|
57 | 58 | <StackPanel Orientation="Horizontal" Grid.Row="5" Grid.Column="2"> |
58 | 59 | <Image Source="/InvvardDev.EZLayoutDisplay.Desktop;component/Skins/Images/twitter-logo.png" Style="{StaticResource LogoInfoStyle}"/> |
59 | | - <Button Style="{StaticResource HyperlinkStyledButton}" Content="{Binding ContactInfoLabel}" |
60 | | - Command="{Binding NavigateContactUrlCommand}" /> |
| 60 | + <Button Style="{StaticResource HyperlinkStyledButton}" Content="{Binding TwitterInfoLabel}" |
| 61 | + Command="{Binding NavigateTwitterUrlCommand}" /> |
| 62 | + </StackPanel> |
| 63 | + |
| 64 | + <StackPanel Orientation="Horizontal" Grid.Row="6" Grid.Column="2"> |
| 65 | + <Image Source="/InvvardDev.EZLayoutDisplay.Desktop;component/Skins/Images/reddit-logo.png" Style="{StaticResource LogoInfoStyle}"/> |
| 66 | + <Button Style="{StaticResource HyperlinkStyledButton}" Content="{Binding RedditInfoLabel}" |
| 67 | + Command="{Binding NavigateRedditUrlCommand}" /> |
61 | 68 | </StackPanel> |
62 | 69 |
|
63 | | - <Button Grid.Row="7" Grid.Column="2" Content="{Binding CloseButtonLabel}" |
| 70 | + <Button Grid.Row="8" Grid.Column="2" Content="{Binding CloseButtonLabel}" |
64 | 71 | Command="{Binding CloseAboutCommand}" |
65 | 72 | Width="100" Margin="0,5,5,5" HorizontalAlignment="Right"/> |
66 | 73 | </Grid> |
|
0 commit comments