천호석
2023-05-15 0de38c0ebeb49d545ae1d2267f2b932392bd583c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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();
        }
    }
}