SCCManager/Remontor/Finder/Finder.cs

28 lines
581 B
C#

using Remontor.Connector;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Remontor.Finder
{
public partial class Finder : Form
{
public Finder()
{
InitializeComponent();
}
private void ConnectBtn_Click(object sender, EventArgs e)
{
SConnector.NewConnect(new CompId(CompNameLB.Text));
this.Close();
}
}
}