22 lines
424 B
C#
22 lines
424 B
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Drawing;
|
|||
|
using System.Data;
|
|||
|
using System.Text;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace ITC81DB.Controls
|
|||
|
{
|
|||
|
public partial class ControlMainAlarm : UserControl
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
public ControlMainAlarm()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|