-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAboutForm.cs
49 lines (44 loc) · 1.73 KB
/
AboutForm.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DigiRite
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
private void AboutForm_Load(object sender, EventArgs e)
{
var assembly = System.Reflection.Assembly.GetEntryAssembly();
System.Diagnostics.FileVersionInfo fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location);
string version = fvi.ProductVersion;
textBoxIntro.Text = "DigiRite" + version +
#if BUILD_X86
" (X86 build)" +
#elif BUILD_X64
" (X64 build)" +
#endif
"\r\nCopyright (c) 2024 Wayne Wright, W5XD\r\n\r\n" +
"This program is based on wsjtx-2.6.0 which is licensed software.\r\n" +
"See the file COPYING.\r\n\r\n" +
"The algorithms, source code, look-and-feel of WSJT-X and related" +
" programs, and protocol specifications for the modes FSK441, FST4, FT8, JT4," +
" JT6M, JT9, JT65, JTMS, QRA64, Q65, MSK144 are Copyright (C)" +
" 2001-2022 by one or more of the following authors: Joseph Taylor," +
" K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo," +
" IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR;" +
" Philip Karn, KA9Q; Chester Fennell, KG4IYS; Uwe Risse, DG2YCB;" +
" and other members of the WSJT Development Group.\r\n\r\n" ;
BackColor = CustomColors.CommonBackgroundColor;
textBoxIntro.BackColor = CustomColors.TxBackgroundColor;
}
}
}