reactosdbg/RosDBG/AboutDlg.cs
Gregor Schneider 2938f1a061 RosDbg:
- Don't try to send data to an unconnected debugger ('cos it crashes)
- Opening a connection may fail, don't change connection tool strip text in that case
- Add some basic credits, joined two labels

svn path=/trunk/tools/reactosdbg/; revision=1087
2009-07-28 22:54:03 +00:00

31 lines
656 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)
{
rosDbgLabel.Text += " " + Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
}