RDPAddins.NET/RDPAddins/About.cs

22 lines
501 B
C#

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();
}
}
}