141 lines
3.4 KiB
C#
141 lines
3.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AGVSystem
|
|
{
|
|
// Token: 0x02000004 RID: 4
|
|
internal partial class AboutBox1 : Form
|
|
{
|
|
// Token: 0x06000046 RID: 70 RVA: 0x00008C71 File Offset: 0x00006E71
|
|
public AboutBox1()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
// Token: 0x17000006 RID: 6
|
|
// (get) Token: 0x06000047 RID: 71 RVA: 0x00008C8C File Offset: 0x00006E8C
|
|
public string AssemblyTitle
|
|
{
|
|
get
|
|
{
|
|
object[] customAttributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
|
|
bool flag = customAttributes.Length != 0;
|
|
if (flag)
|
|
{
|
|
AssemblyTitleAttribute assemblyTitleAttribute = (AssemblyTitleAttribute)customAttributes[0];
|
|
bool flag2 = assemblyTitleAttribute.Title != "";
|
|
if (flag2)
|
|
{
|
|
return assemblyTitleAttribute.Title;
|
|
}
|
|
}
|
|
return Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000007 RID: 7
|
|
// (get) Token: 0x06000048 RID: 72 RVA: 0x00008CF8 File Offset: 0x00006EF8
|
|
public string AssemblyVersion
|
|
{
|
|
get
|
|
{
|
|
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000008 RID: 8
|
|
// (get) Token: 0x06000049 RID: 73 RVA: 0x00008D20 File Offset: 0x00006F20
|
|
public string AssemblyDescription
|
|
{
|
|
get
|
|
{
|
|
object[] customAttributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
|
|
bool flag = customAttributes.Length == 0;
|
|
string result;
|
|
if (flag)
|
|
{
|
|
result = "";
|
|
}
|
|
else
|
|
{
|
|
result = ((AssemblyDescriptionAttribute)customAttributes[0]).Description;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000009 RID: 9
|
|
// (get) Token: 0x0600004A RID: 74 RVA: 0x00008D68 File Offset: 0x00006F68
|
|
public string AssemblyProduct
|
|
{
|
|
get
|
|
{
|
|
object[] customAttributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false);
|
|
bool flag = customAttributes.Length == 0;
|
|
string result;
|
|
if (flag)
|
|
{
|
|
result = "";
|
|
}
|
|
else
|
|
{
|
|
result = ((AssemblyProductAttribute)customAttributes[0]).Product;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700000A RID: 10
|
|
// (get) Token: 0x0600004B RID: 75 RVA: 0x00008DB0 File Offset: 0x00006FB0
|
|
public string AssemblyCopyright
|
|
{
|
|
get
|
|
{
|
|
object[] customAttributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
|
|
bool flag = customAttributes.Length == 0;
|
|
string result;
|
|
if (flag)
|
|
{
|
|
result = "";
|
|
}
|
|
else
|
|
{
|
|
result = ((AssemblyCopyrightAttribute)customAttributes[0]).Copyright;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700000B RID: 11
|
|
// (get) Token: 0x0600004C RID: 76 RVA: 0x00008DF8 File Offset: 0x00006FF8
|
|
public string AssemblyCompany
|
|
{
|
|
get
|
|
{
|
|
object[] customAttributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
|
|
bool flag = customAttributes.Length == 0;
|
|
string result;
|
|
if (flag)
|
|
{
|
|
result = "";
|
|
}
|
|
else
|
|
{
|
|
result = ((AssemblyCompanyAttribute)customAttributes[0]).Company;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600004D RID: 77 RVA: 0x00008E3F File Offset: 0x0000703F
|
|
private void okButton_Click(object sender, EventArgs e)
|
|
{
|
|
base.Close();
|
|
}
|
|
}
|
|
}
|