You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.9 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 ClientTest
{
/*
*类名称IPPortInputForm
*创建人:韩荣伟
*创建时间2010-10-30
*功能描述设置终端IP和端口窗口类
*/
public partial class IPPortInputForm : Form
{
public string sIP;
public int nPort;
public IPPortInputForm()
{
InitializeComponent();
}
/*
*方法名称btnApply_Click
*创建人:韩荣伟
*创建时间2010-10-30
*参数描述object sender 事件发起者, EventArgs e 事件参数
*返回描述void
*功能描述设置终端IP和端口
*/
private void btnApply_Click(object sender, EventArgs e)
{
DialogResult result = MessageBox.Show("重设IP和端口有可能导致采集器IP问题最终不能联网。请确认是否继续",
"注意", MessageBoxButtons.OKCancel,
MessageBoxIcon.Warning);
if (result == DialogResult.OK)
{
this.DialogResult = DialogResult.OK;
sIP = textBox1.Text;
nPort = Convert.ToInt32(textBox2.Text);
}
else
{
this.DialogResult = DialogResult.Cancel;
}
}
/*
*方法名称LoadIPPort
*创建人:韩荣伟
*创建时间2010-10-30
*参数描述string sIP 终端IP, int nPort 终端端口
*返回描述void
*功能描述加载终端IP和端口
*/
public void LoadIPPort(string sIP, int nPort)
{
textBox1.Text = sIP;
textBox2.Text = "" + nPort;
}
}
}