mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2025-12-06 03:31:59 +01:00
17 lines
322 B
C#
17 lines
322 B
C#
using System.Windows.Forms;
|
|
using SharpCATLib;
|
|
|
|
namespace SharpCATForms
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
SharpCAT sharpCAT = new SharpCAT();
|
|
|
|
InitializeComponent();
|
|
|
|
ComPorts.DataSource = sharpCAT.PortNames;
|
|
}
|
|
}
|
|
} |