smolEdit/V_EditorPro/AboutForm.cs

23 lines
482 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();
label1.Text = $"V_EditorPro\nVersion 1.1\nOS: {RuntimeInformation.OSDescription}";
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}