#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
661 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using WeifenLuo.WinFormsUI.Docking;
namespace DockSample
{
public partial class AboutDialog : Form
{
public AboutDialog()
{
InitializeComponent();
}
private void AboutDialog_Load(object sender, EventArgs e)
{
labelAppVersion.Text = typeof(MainForm).Assembly.GetName().Version.ToString();
labelLibVersion.Text = typeof(DockPanel).Assembly.GetName().Version.ToString();
}
}
}