24 lines
455 B
C#
24 lines
455 B
C#
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 IOB_WIN_NEXT
|
|
{
|
|
public partial class TestForm : Form
|
|
{
|
|
#region Public Constructors
|
|
|
|
public TestForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
}
|
|
} |