123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace RemoteClient
- {
-
-
-
- public partial class frm_ConnectAll : Form
- {
-
-
-
- public string StartIP
- {
- get { return ipc_StartIP.Text; }
- }
-
-
-
- public string EndIP
- {
- get { return ipc_EndIP.Text; }
- }
- public frm_ConnectAll()
- {
- InitializeComponent();
- ipc_StartIP.Focus();
- }
- private void btn_Enter_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void btn_Cancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|