Remade V_EditorPro to have the same features and more than V_EditorClassic

This commit is contained in:
Brendan
2024-05-27 21:30:39 +02:00
parent 4b731ab731
commit 9ad885bf1d
6 changed files with 320 additions and 107 deletions

18
V_EditorPro/AboutForm.cs Normal file
View 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}";
}
}
}