// Decompiled with JetBrains decompiler // Type: HPG_68D.AboutForm // Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null // MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3 // Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe using HPG_68D.My; using Microsoft.VisualBasic.CompilerServices; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Windows.Forms; namespace HPG_68D { [DesignerGenerated] public class AboutForm : Form { private static ArrayList __ENCList = new ArrayList(); private IContainer components; [AccessedThroughProperty("PictureBox1")] private PictureBox _PictureBox1; [AccessedThroughProperty("Label1")] private Label _Label1; [AccessedThroughProperty("Label2")] private Label _Label2; [AccessedThroughProperty("Label版本")] private Label _Label版本; [AccessedThroughProperty("Button1")] private Button _Button1; [AccessedThroughProperty("Label发布时间")] private Label _Label发布时间; [AccessedThroughProperty("Label5")] private Label _Label5; [DebuggerNonUserCode] static AboutForm() { } [DebuggerNonUserCode] public AboutForm() { this.Load += new EventHandler(this.AboutForm_Load); AboutForm.__ENCList.Add((object) new WeakReference((object) this)); this.InitializeComponent(); } [DebuggerNonUserCode] protected override void Dispose(bool disposing) { if (disposing && this.components != null) this.components.Dispose(); base.Dispose(disposing); } [DebuggerStepThrough] private void InitializeComponent() { ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (AboutForm)); this.PictureBox1 = new PictureBox(); this.Label1 = new Label(); this.Label2 = new Label(); this.Label版本 = new Label(); this.Button1 = new Button(); this.Label发布时间 = new Label(); this.Label5 = new Label(); ((ISupportInitialize) this.PictureBox1).BeginInit(); this.SuspendLayout(); componentResourceManager.ApplyResources((object) this.PictureBox1, "PictureBox1"); this.PictureBox1.Name = "PictureBox1"; this.PictureBox1.TabStop = false; componentResourceManager.ApplyResources((object) this.Label1, "Label1"); this.Label1.Name = "Label1"; componentResourceManager.ApplyResources((object) this.Label2, "Label2"); this.Label2.Name = "Label2"; componentResourceManager.ApplyResources((object) this.Label版本, "Label版本"); this.Label版本.Name = "Label版本"; componentResourceManager.ApplyResources((object) this.Button1, "Button1"); this.Button1.Name = "Button1"; this.Button1.UseVisualStyleBackColor = true; componentResourceManager.ApplyResources((object) this.Label发布时间, "Label发布时间"); this.Label发布时间.Name = "Label发布时间"; componentResourceManager.ApplyResources((object) this.Label5, "Label5"); this.Label5.Name = "Label5"; componentResourceManager.ApplyResources((object) this, "$this"); this.AutoScaleMode = AutoScaleMode.Font; this.Controls.Add((Control) this.Label5); this.Controls.Add((Control) this.Label发布时间); this.Controls.Add((Control) this.Button1); this.Controls.Add((Control) this.Label版本); this.Controls.Add((Control) this.Label2); this.Controls.Add((Control) this.Label1); this.Controls.Add((Control) this.PictureBox1); this.FormBorderStyle = FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = nameof (AboutForm); ((ISupportInitialize) this.PictureBox1).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } internal virtual PictureBox PictureBox1 { [DebuggerNonUserCode] get => this._PictureBox1; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set { this._PictureBox1 = value; } } internal virtual Label Label1 { [DebuggerNonUserCode] get => this._Label1; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => this._Label1 = value; } internal virtual Label Label2 { [DebuggerNonUserCode] get => this._Label2; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => this._Label2 = value; } internal virtual Label Label版本 { [DebuggerNonUserCode] get => this._Label版本; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set { this._Label版本 = value; } } internal virtual Button Button1 { [DebuggerNonUserCode] get => this._Button1; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set { if (this._Button1 != null) this._Button1.Click -= new EventHandler(this.Button1_Click); this._Button1 = value; if (this._Button1 == null) return; this._Button1.Click += new EventHandler(this.Button1_Click); } } internal virtual Label Label发布时间 { [DebuggerNonUserCode] get => this._Label发布时间; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set { this._Label发布时间 = value; } } internal virtual Label Label5 { [DebuggerNonUserCode] get => this._Label5; [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => this._Label5 = value; } private void Button1_Click(object sender, EventArgs e) => this.Close(); private void AboutForm_Load(object sender, EventArgs e) { this.Label版本.Text = Operators.CompareString(publicva.Language, "zh-CN", false) != 0 ? "Version " + MyProject.Application.Info.Version.ToString() : "版本 " + MyProject.Application.Info.Version.ToString(); this.Label发布时间.Text = MyProject.Application.Info.Description.ToString(); } } }