RDPAddins.NET/RDPAddins/About.cs

22 lines
501 B
C#
Raw Permalink Normal View History

2021-09-24 22:49:31 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace RDPAddins
{
partial class frmAbout : Form
{
public frmAbout()
{
InitializeComponent();
}
private void frmAbout_Load(object sender, System.EventArgs e)
{
this.lblWer.Text += System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
}