Widow – Diff between revs 5 and 10

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 5 Rev 10
1 using System; 1 using System;
2 using System.Windows.Forms; 2 using System.Windows.Forms;
3   3  
4 namespace Widow 4 namespace Widow
5 { 5 {
6 public partial class AboutForm : Form 6 public partial class AboutForm : Form
7 { 7 {
8 #region Constructors, Destructors and Finalizers 8 #region Constructors, Destructors and Finalizers
9   9  
10 public AboutForm() 10 public AboutForm()
11 { 11 {
12 InitializeComponent(); 12 InitializeComponent();
13 } 13 }
14   14  
15 #endregion 15 #endregion
16   16  
17 #region Event Handlers 17 #region Event Handlers
18   18  
19 private void OnFormShown(object sender, EventArgs e) 19 private void OnFormShown(object sender, EventArgs e)
20 { 20 {
21 WidowNameVersion.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; 21 versionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
22 } 22 }
23   23  
24 #endregion 24 #endregion
25 } 25 }
26 } 26 }
27   27  
28
Generated by GNU Enscript 1.6.5.90.
28
Generated by GNU Enscript 1.6.5.90.
29   29  
30   30  
31   31