mirror of
https://github.com/abrendan/smolEdit.git
synced 2025-08-25 22:12:03 +02:00
Remade V_EditorPro to have the same features and more than V_EditorClassic
This commit is contained in:
18
V_EditorPro/AboutForm.cs
Normal file
18
V_EditorPro/AboutForm.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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}";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user