SharpCAT/SharpCATForms/Form1.cs

17 lines
328 B
C#
Raw Normal View History

using System.Windows.Forms;
using SharpCATLib;
namespace SharpCATForms
{
public partial class Form1 : Form
{
public Form1()
{
SharpCAT sharpCAT = new SharpCAT();
InitializeComponent();
ComPortListBox.DataSource = sharpCAT.PortNames;
}
}
}