Skip to content

Commit f874b5a

Browse files
committed
Fix version display.
1 parent cb02404 commit f874b5a

File tree

4 files changed

+183
-124
lines changed

4 files changed

+183
-124
lines changed

QpTestClient/AboutBox.Designer.cs

Lines changed: 119 additions & 120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QpTestClient/AboutBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public AboutBox()
1717
InitializeComponent();
1818
this.Text = String.Format("关于 {0}", ProductInfoUtils.GetAssemblyTitle());
1919
this.labelProductName.Text = ProductInfoUtils.GetAssemblyProduct();
20-
this.labelVersion.Text = String.Format("版本 {0}", ProductInfoUtils.GetAssemblyVersion());
20+
this.labelVersion.Text = $"版本 {ProductInfoUtils.GetAssemblyVersion()}";
2121
this.labelCopyright.Text = ProductInfoUtils.GetAssemblyCopyright();
2222
this.labelCompanyName.Text = ProductInfoUtils.GetAssemblyCompany();
2323
this.textBoxDescription.Text = ProductInfoUtils.GetAssemblyDescription();

0 commit comments

Comments
 (0)