mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 11:49:53 +00:00
515ac6ceb7
-save the last connection method and preselect it on the next connection attempt -add an (unfinished) AboutDlg svn path=/trunk/tools/reactosdbg/; revision=1016
25 lines
446 B
C#
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();
|
|
}
|
|
}
|
|
}
|