using System; 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; } } } }