Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.

Commit 9edf51b

Browse files
committed
Add the Reddit contact info
1 parent 5c35333 commit 9edf51b

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

src/InvvardDev.EZLayoutDisplay.Desktop/View/AboutWindow.xaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
mc:Ignorable="d"
7-
Title="{Binding WindowTitle}" Height="300" Width="500"
7+
Title="{Binding WindowTitle}" Height="330" Width="500"
88
ResizeMode="NoResize" Background="{StaticResource WindowBackgroundBrush}"
99
WindowStartupLocation="CenterScreen" Icon="{StaticResource WindowIcon}"
1010
DataContext="{Binding About, Source={StaticResource Locator}}">
@@ -21,6 +21,7 @@
2121
<RowDefinition/>
2222
<RowDefinition/>
2323
<RowDefinition/>
24+
<RowDefinition/>
2425
<RowDefinition Height="10"/>
2526
<RowDefinition/>
2627
</Grid.RowDefinitions>
@@ -29,7 +30,7 @@
2930
<ColumnDefinition Width="100"/>
3031
<ColumnDefinition Width="19*"/>
3132
</Grid.ColumnDefinitions>
32-
<Image Source="{StaticResource EzLogo}" Grid.RowSpan="8"/>
33+
<Image Source="{StaticResource EzLogo}" Grid.RowSpan="9"/>
3334

3435
<StackPanel Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2">
3536
<Label Content="{Binding AppTitleLabel}" Style="{StaticResource AppTitleStyle}"/>
@@ -56,11 +57,17 @@
5657

5758
<StackPanel Orientation="Horizontal" Grid.Row="5" Grid.Column="2">
5859
<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}" />
6168
</StackPanel>
6269

63-
<Button Grid.Row="7" Grid.Column="2" Content="{Binding CloseButtonLabel}"
70+
<Button Grid.Row="8" Grid.Column="2" Content="{Binding CloseButtonLabel}"
6471
Command="{Binding CloseAboutCommand}"
6572
Width="100" Margin="0,5,5,5" HorizontalAlignment="Right"/>
6673
</Grid>

0 commit comments

Comments
 (0)