diff options
author | sr55 <[email protected]> | 2013-09-07 16:54:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-07 16:54:52 +0000 |
commit | 0c5a1f22cce32136e76c471c9dd6716e20c81f91 (patch) | |
tree | 53fe3f7cfafe32c781239da186649ab4c01597e3 /win/CS/HandBrakeWPF/Views/AboutView.xaml | |
parent | fc297e6f21f204621f110b6f156031cf6dc626a4 (diff) |
WinGui: Add System Information to the About Window and Log header.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5775 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/AboutView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/AboutView.xaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AboutView.xaml b/win/CS/HandBrakeWPF/Views/AboutView.xaml index d7b63c08b..188b3aa28 100644 --- a/win/CS/HandBrakeWPF/Views/AboutView.xaml +++ b/win/CS/HandBrakeWPF/Views/AboutView.xaml @@ -29,6 +29,8 @@ <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
+ <RowDefinition Height="Auto" />
+ <RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0"
@@ -43,6 +45,12 @@ <TextBox Text="{x:Static Properties:Resources.About_GPL}" Grid.Row="2" Margin="10,0,10,10" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch" IsReadOnly="True" TextWrapping="Wrap" VerticalScrollBarVisibility="Auto" />
+ <TextBlock Grid.Row="3" Margin="5,10,0,5" Text="System Information: " />
+
+ <TextBox Text="{Binding SystemInformation}" Grid.Row="4" Margin="10,0,10,10" HorizontalAlignment="Stretch"
+ VerticalAlignment="Stretch" IsReadOnly="True" TextWrapping="Wrap" VerticalScrollBarVisibility="Auto" />
+
+
</Grid>
</Grid>
|