smolEdit/V_EditorPro/AboutForm.cs

18 lines
456 B
C#

using System;
using System.Drawing;
using System.Reflection.Emit;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace V_EditorPro
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
this.Icon = new Icon("..\\..\\Veditorproicon.ico");
label1.Text = $"V_EditorPro\nVersion 1.0\nOS: {RuntimeInformation.OSDescription}";
}
}
}