mirror of
https://github.com/reactos/reactosdbg.git
synced 2025-02-17 01:49:16 +00:00
![Gregor Schneider](/assets/img/avatar_default.png)
- 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
31 lines
656 B
C#
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();
|
|
}
|
|
}
|
|
}
|