Skip to content

Commit

Permalink
#12 Pressing enter in the entire form now triggers the save action
Browse files Browse the repository at this point in the history
general code improvements
  • Loading branch information
Sander ten Brinke committed May 2, 2017
1 parent 9d2508a commit 5503724
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ partial class AboutForm : Form
public AboutForm()
{
InitializeComponent();
this.Text = String.Format("About {0}", AssemblyTitle);
this.Text = $"About {AssemblyTitle}";
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = $"Version {AssemblyVersion}";

Expand Down
1 change: 1 addition & 0 deletions OverviewForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions OverviewForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public OverviewForm()
};

#endregion


}


Expand Down

0 comments on commit 5503724

Please sign in to comment.