Skip to content

Commit

Permalink
Refatoring: renamed all controls on the FrmAbout to be consistent wit…
Browse files Browse the repository at this point in the history
…h all other forms.
  • Loading branch information
xvitaly committed Jan 5, 2025
1 parent 3a70159 commit 7331e55
Show file tree
Hide file tree
Showing 3 changed files with 148 additions and 148 deletions.
118 changes: 59 additions & 59 deletions src/mhed/FrmAbout.Designer.cs

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

10 changes: 5 additions & 5 deletions src/mhed/FrmAbout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ public FrmAbout()
/// <param name="e">Event arguments.</param>
private void FrmAbout_Load(object sender, EventArgs e)
{
AHE_AppName.Text = CurrentApp.AppProduct;
AHE_Version.Text = string.Format(AppStrings.AHE_Version, CurrentApp.AppVersion);
AHE_Copyright.Text = CurrentApp.AppCopyright;
AHE_CompanyName.Text = CurrentApp.AppCompany;
AF_ProductName.Text = CurrentApp.AppProduct;
AF_ProductVersion.Text = string.Format(AppStrings.AHE_Version, CurrentApp.AppVersion);
AF_Copyright.Text = CurrentApp.AppCopyright;
AF_CompanyName.Text = CurrentApp.AppCompany;
}

/// <summary>
/// "OK" button click event handler.
/// </summary>
/// <param name="sender">Sender object.</param>
/// <param name="e">Event arguments.</param>
private void AHE_Okay_Click(object sender, EventArgs e)
private void AF_Okay_Click(object sender, EventArgs e)
{
Close();
}
Expand Down
Loading

0 comments on commit 7331e55

Please sign in to comment.