SharpCAT/SharpCATForms/Form1.cs
Erick Kinnee b3c5c52965 Add console based test app.
Changeup on namespaces.
Experimenting with events.
2019-03-07 07:25:09 -06:00

17 lines
328 B
C#

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