-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
7,648 additions
and
56 deletions.
There are no files selected for viewing
187 changes: 187 additions & 0 deletions
187
IME WL Converter/IME WL Converter/Forms/AboutBox.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
using System; | ||
using System.IO; | ||
using System.Reflection; | ||
using System.Windows.Forms; | ||
|
||
namespace Studyzy.IMEWLConverter | ||
{ | ||
internal partial class AboutBox : Form | ||
{ | ||
public AboutBox() | ||
{ | ||
InitializeComponent(); | ||
Text = String.Format("关于 {0}", AssemblyTitle); | ||
labelProductName.Text = AssemblyProduct; | ||
labelVersion.Text = String.Format("版本 {0}", AssemblyVersion); | ||
labelCopyright.Text = AssemblyCopyright; | ||
labelCompanyName.Text = AssemblyCompany; | ||
textBoxDescription.Text = AssemblyDescription; | ||
} | ||
|
||
#region 程序集属性访问器 | ||
|
||
public string AssemblyTitle | ||
{ | ||
get | ||
{ | ||
object[] attributes = | ||
Assembly.GetExecutingAssembly().GetCustomAttributes(typeof (AssemblyTitleAttribute), false); | ||
if (attributes.Length > 0) | ||
{ | ||
var titleAttribute = (AssemblyTitleAttribute) attributes[0]; | ||
if (titleAttribute.Title != "") | ||
{ | ||
return titleAttribute.Title; | ||
} | ||
} | ||
return Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); | ||
} | ||
} | ||
|
||
public string AssemblyVersion | ||
{ | ||
get { return Assembly.GetExecutingAssembly().GetName().Version.ToString(); } | ||
} | ||
|
||
public string AssemblyDescription | ||
{ | ||
get | ||
{ | ||
object[] attributes = | ||
Assembly.GetExecutingAssembly().GetCustomAttributes(typeof (AssemblyDescriptionAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyDescriptionAttribute) attributes[0]).Description; | ||
} | ||
} | ||
|
||
public string AssemblyProduct | ||
{ | ||
get | ||
{ | ||
object[] attributes = | ||
Assembly.GetExecutingAssembly().GetCustomAttributes(typeof (AssemblyProductAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyProductAttribute) attributes[0]).Product; | ||
} | ||
} | ||
|
||
public string AssemblyCopyright | ||
{ | ||
get | ||
{ | ||
object[] attributes = | ||
Assembly.GetExecutingAssembly().GetCustomAttributes(typeof (AssemblyCopyrightAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCopyrightAttribute) attributes[0]).Copyright; | ||
} | ||
} | ||
|
||
public string AssemblyCompany | ||
{ | ||
get | ||
{ | ||
object[] attributes = | ||
Assembly.GetExecutingAssembly().GetCustomAttributes(typeof (AssemblyCompanyAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCompanyAttribute) attributes[0]).Company; | ||
} | ||
} | ||
|
||
#endregion | ||
|
||
private void okButton_Click(object sender, EventArgs e) | ||
{ | ||
Close(); | ||
} | ||
} | ||
} |
Oops, something went wrong.