천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
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
33
using System;
using System.Windows.Forms;
 
namespace SHARP_CLAS_UI
{
    public partial class Tray_QR_Code_Command : Form
    {
        public En_User_Command Command_Type;
 
        public Tray_QR_Code_Command(string name)
        {
            InitializeComponent();
            this.Text = name;
            Command_Type = En_User_Command.None;
        }
 
        private void btn_OK_Click(object sender, EventArgs e)
        {
            if (rb_Retry.Checked == true)
            {
                Command_Type = En_User_Command.Retry;
            }
            else if (rb_Pass.Checked == true)
            {
                Command_Type = En_User_Command.Pass;
            }
 
            this.DialogResult = DialogResult.OK;
 
            this.Hide();
        }
    }
}