mirror of
https://github.com/abrendan/smolEdit.git
synced 2025-06-16 20:55:01 +02:00
23 lines
482 B
C#
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.0\nOS: {RuntimeInformation.OSDescription}";
|
|
}
|
|
|
|
private void pictureBox1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |