22 lines
441 B
C#
22 lines
441 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_0H.Controls
|
|
{
|
|
public partial class ControlMainDisplayAlarm : UserControl
|
|
{
|
|
#region Constructor
|
|
public ControlMainDisplayAlarm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
#endregion
|
|
}
|
|
}
|