117 lines
3.7 KiB
C#
117 lines
3.7 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SL200_RTLogViewer.subForm
|
|
{
|
|
// Token: 0x02000015 RID: 21
|
|
public class mpdtNGOK : Form
|
|
{
|
|
// Token: 0x1400000A RID: 10
|
|
// (add) Token: 0x060000F1 RID: 241 RVA: 0x0001FE34 File Offset: 0x0001E034
|
|
// (remove) Token: 0x060000F2 RID: 242 RVA: 0x0001FE6C File Offset: 0x0001E06C
|
|
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
|
public event mpdtNGOK.DataSender CloseEvent;
|
|
|
|
// Token: 0x060000F3 RID: 243 RVA: 0x0001FEA1 File Offset: 0x0001E0A1
|
|
public mpdtNGOK()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
// Token: 0x060000F4 RID: 244 RVA: 0x0001FEB9 File Offset: 0x0001E0B9
|
|
private void button_start_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x060000F5 RID: 245 RVA: 0x0001FEDA File Offset: 0x0001E0DA
|
|
private void button_ok_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x060000F6 RID: 246 RVA: 0x0001FEFB File Offset: 0x0001E0FB
|
|
private void button_ng_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x060000F7 RID: 247 RVA: 0x0001FF1C File Offset: 0x0001E11C
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
bool flag = disposing && this.components != null;
|
|
if (flag)
|
|
{
|
|
this.components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
// Token: 0x060000F8 RID: 248 RVA: 0x0001FF54 File Offset: 0x0001E154
|
|
private void InitializeComponent()
|
|
{
|
|
this.button_ng = new Button();
|
|
this.button_ok = new Button();
|
|
this.button_start = new Button();
|
|
base.SuspendLayout();
|
|
this.button_ng.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_ng.Location = new Point(151, 3);
|
|
this.button_ng.Name = "button_ng";
|
|
this.button_ng.Size = new Size(75, 42);
|
|
this.button_ng.TabIndex = 18;
|
|
this.button_ng.Text = "NG";
|
|
this.button_ng.UseVisualStyleBackColor = true;
|
|
this.button_ng.Click += this.button_ng_Click;
|
|
this.button_ok.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_ok.Location = new Point(77, 3);
|
|
this.button_ok.Name = "button_ok";
|
|
this.button_ok.Size = new Size(75, 42);
|
|
this.button_ok.TabIndex = 17;
|
|
this.button_ok.Text = "OK";
|
|
this.button_ok.UseVisualStyleBackColor = true;
|
|
this.button_ok.Click += this.button_ok_Click;
|
|
this.button_start.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_start.Location = new Point(3, 3);
|
|
this.button_start.Name = "button_start";
|
|
this.button_start.Size = new Size(75, 42);
|
|
this.button_start.TabIndex = 16;
|
|
this.button_start.Text = "START";
|
|
this.button_start.UseVisualStyleBackColor = true;
|
|
this.button_start.Click += this.button_start_Click;
|
|
base.AutoScaleDimensions = new SizeF(7f, 12f);
|
|
base.AutoScaleMode = AutoScaleMode.Font;
|
|
this.BackColor = SystemColors.HotTrack;
|
|
base.ClientSize = new Size(229, 48);
|
|
base.Controls.Add(this.button_ng);
|
|
base.Controls.Add(this.button_ok);
|
|
base.Controls.Add(this.button_start);
|
|
base.FormBorderStyle = FormBorderStyle.None;
|
|
base.Name = "mpdtNGOK";
|
|
this.Text = "mpdtNGOK";
|
|
base.ResumeLayout(false);
|
|
}
|
|
|
|
// Token: 0x0400019D RID: 413
|
|
private IContainer components = null;
|
|
|
|
// Token: 0x0400019E RID: 414
|
|
private Button button_ng;
|
|
|
|
// Token: 0x0400019F RID: 415
|
|
private Button button_ok;
|
|
|
|
// Token: 0x040001A0 RID: 416
|
|
private Button button_start;
|
|
|
|
// Token: 0x02000068 RID: 104
|
|
// (Invoke) Token: 0x060001C9 RID: 457
|
|
public delegate void DataSender(string value);
|
|
}
|
|
}
|