using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Data;
|
using System.Drawing;
|
using System.Linq;
|
using System.Text;
|
using System.Windows.Forms;
|
|
namespace HStation.Desktop
|
{
|
public partial class CloseWarningForm : Form
|
{
|
public CloseWarningForm()
|
{
|
InitializeComponent();
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
}
|
|
private void CloseWarningForm_Load(object sender, EventArgs e)
|
{
|
|
}
|
|
public CloseStatus CloseStatus
|
{
|
get
|
{
|
return closeWarningCtrl1.CloseStatus;
|
}
|
}
|
}
|
}
|