22 lines
419 B
C#
22 lines
419 B
C#
using MetroFramework.Forms;
|
|||
|
|
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 JY.Inspection.Frm
|
||
|
|
{
|
||
|
|
public partial class FrmHelper : MetroForm
|
||
|
|
{
|
||
|
|
public FrmHelper()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|