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
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
91
92
93
94
95
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AboutViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The About View Model
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using System;
using System.IO;
using System.Text;
using System.Windows.Forms;
using HandBrake.ApplicationServices.Utilities;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The About View Model
/// </summary>
public class AboutViewModel : ViewModelBase, IAboutViewModel
{
/// <summary>
/// The system info.
/// </summary>
private string systemInfo;
/// <summary>
/// Initializes a new instance of the <see cref="AboutViewModel"/> class.
/// </summary>
public AboutViewModel()
{
this.Title = "About HandBrake";
StringBuilder builder = new StringBuilder();
foreach (var item in SystemInfo.GetGPUInfo)
{
builder.AppendLine(item);
}
StringBuilder system = new StringBuilder();
system.AppendLine(string.Format("Enviroment: {0}", Environment.NewLine));
system.AppendLine(string.Format("Operating System: {0}", Environment.OSVersion));
system.AppendLine(string.Format("CPU: {0}", SystemInfo.GetCpuCount));
system.AppendLine(string.Format("Ram: {0} MB{1}", SystemInfo.TotalPhysicalMemory, Environment.NewLine));
system.AppendLine(string.Format("{0}GPU Information:{0}{0}{1}", Environment.NewLine, builder));
system.AppendLine(string.Format("{0}System Paths:{0}", Environment.NewLine));
system.AppendLine(string.Format("Temp Dir: {0}", Path.GetTempPath()));
system.AppendLine(string.Format("Install Dir: {0}", Application.StartupPath));
system.AppendLine(string.Format("Data Dir: {0}\n", Application.UserAppDataPath));
SystemInformation = system.ToString();
}
/// <summary>
/// Gets Version.
/// </summary>
public string Version
{
get
{
return string.Format("{0} - {1}", VersionHelper.GetVersion(), VersionHelper.GetPlatformBitnessVersion());
}
}
/// <summary>
/// Gets or sets the system info.
/// </summary>
public string SystemInformation
{
get
{
return this.systemInfo;
}
set
{
this.systemInfo = value;
this.NotifyOfPropertyChange("SystemInfo");
}
}
/// <summary>
/// Close this window.
/// </summary>
public void Close()
{
this.TryClose();
}
}
}
|