26 lines
661 B
C#
26 lines
661 B
C#
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();
|
|
}
|
|
}
|
|
} |