using SA_LTT; 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 SA_LTT_UI.Viewer { public partial class MaintenanceViewer : Form { public MaintenanceViewer() { InitializeComponent(); } private void MintainanceViewer_FormClosing(object sender, FormClosingEventArgs e) { e.Cancel = true; } private void btn_Close_Click(object sender, EventArgs e) { EquipmentLogManager.Instance.WriteButtonLog($"MainteneceViewer : Close"); this.Hide(); } } }