reactosdbg/RosDBG/AboutDlg.cs
Christoph von Wittich 515ac6ceb7 -don't set the menu text to disconnect when the connect dialog was canceled
-save the last connection method and preselect it on the next connection attempt
-add an (unfinished) AboutDlg

svn path=/trunk/tools/reactosdbg/; revision=1016
2009-05-28 09:59:51 +00:00

25 lines
446 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;
namespace RosDBG
{
public partial class AboutDlg : Form
{
public AboutDlg()
{
InitializeComponent();
}
private void btnOK_Click(object sender, EventArgs e)
{
Close();
}
}
}