mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-27 05:30:23 +00:00
6030ecd415
locals and stack trace at the place where reactos is stopped. svn path=/trunk/tools/reactosdbg/; revision=759
44 lines
986 B
C#
44 lines
986 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 TCPTargetSelect : Form
|
|
{
|
|
public string Host
|
|
{
|
|
get { return HostChoice.Text; }
|
|
set { HostChoice.Text = value; }
|
|
}
|
|
|
|
public int Port
|
|
{
|
|
get { return (int)PortNumber.Value; }
|
|
set { PortNumber.Value = value; }
|
|
}
|
|
|
|
public TCPTargetSelect()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OKButton_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
|
|
private void CancelButton_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|