2023-08-16 22:32:16 +08:00

25 lines
549 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AIMS.PublicUI.UI
{
public partial class frmAbout : Form
{
public frmAbout()
{
InitializeComponent();
}
private void frmAbout_Load(object sender, EventArgs e)
{
label4.Text = "V" + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
}