mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 11:49:53 +00:00
7087f8b6ba
svn path=/trunk/tools/reactosdbg/; revision=1028
31 lines
650 B
C#
31 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Reflection;
|
|
|
|
namespace RosDBG
|
|
{
|
|
public partial class AboutDlg : Form
|
|
{
|
|
public AboutDlg()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btnOK_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void AboutDlg_Load(object sender, EventArgs e)
|
|
{
|
|
versionLabel.Text = Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
|
}
|
|
}
|
|
}
|