116 lines
3.6 KiB
C#
116 lines
3.6 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SL200_RTLogViewer.subForm
|
|
{
|
|
// Token: 0x0200000E RID: 14
|
|
public class doorModeSelForm : Form
|
|
{
|
|
// Token: 0x14000005 RID: 5
|
|
// (add) Token: 0x06000062 RID: 98 RVA: 0x00006B88 File Offset: 0x00004D88
|
|
// (remove) Token: 0x06000063 RID: 99 RVA: 0x00006BC0 File Offset: 0x00004DC0
|
|
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
|
public event doorModeSelForm.DataSender CloseEvent;
|
|
|
|
// Token: 0x06000064 RID: 100 RVA: 0x00006BF5 File Offset: 0x00004DF5
|
|
public doorModeSelForm()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
// Token: 0x06000065 RID: 101 RVA: 0x00006C0D File Offset: 0x00004E0D
|
|
private void button_aa_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x06000066 RID: 102 RVA: 0x00006C2E File Offset: 0x00004E2E
|
|
private void button_am_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x06000067 RID: 103 RVA: 0x00006C4F File Offset: 0x00004E4F
|
|
private void button_mm_Click(object sender, EventArgs e)
|
|
{
|
|
this.CloseEvent(((Button)sender).Text);
|
|
base.Close();
|
|
}
|
|
|
|
// Token: 0x06000068 RID: 104 RVA: 0x00006C70 File Offset: 0x00004E70
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
bool flag = disposing && this.components != null;
|
|
if (flag)
|
|
{
|
|
this.components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
// Token: 0x06000069 RID: 105 RVA: 0x00006CA8 File Offset: 0x00004EA8
|
|
private void InitializeComponent()
|
|
{
|
|
this.button_mm = new Button();
|
|
this.button_am = new Button();
|
|
this.button_aa = new Button();
|
|
base.SuspendLayout();
|
|
this.button_mm.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_mm.Location = new Point(151, 4);
|
|
this.button_mm.Name = "button_mm";
|
|
this.button_mm.Size = new Size(75, 42);
|
|
this.button_mm.TabIndex = 18;
|
|
this.button_mm.Text = "M / M";
|
|
this.button_mm.UseVisualStyleBackColor = true;
|
|
this.button_mm.Click += this.button_mm_Click;
|
|
this.button_am.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_am.Location = new Point(77, 4);
|
|
this.button_am.Name = "button_am";
|
|
this.button_am.Size = new Size(75, 42);
|
|
this.button_am.TabIndex = 17;
|
|
this.button_am.Text = "A / M";
|
|
this.button_am.UseVisualStyleBackColor = true;
|
|
this.button_am.Click += this.button_am_Click;
|
|
this.button_aa.Font = new Font("맑은 고딕", 12f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.button_aa.Location = new Point(3, 4);
|
|
this.button_aa.Name = "button_aa";
|
|
this.button_aa.Size = new Size(75, 42);
|
|
this.button_aa.TabIndex = 16;
|
|
this.button_aa.Text = "A / A";
|
|
this.button_aa.UseVisualStyleBackColor = true;
|
|
this.button_aa.Click += this.button_aa_Click;
|
|
base.AutoScaleMode = AutoScaleMode.None;
|
|
this.BackColor = SystemColors.HotTrack;
|
|
base.ClientSize = new Size(230, 48);
|
|
base.Controls.Add(this.button_mm);
|
|
base.Controls.Add(this.button_am);
|
|
base.Controls.Add(this.button_aa);
|
|
base.FormBorderStyle = FormBorderStyle.None;
|
|
base.Name = "doorModeSelForm";
|
|
this.Text = "doorModeSelForm";
|
|
base.ResumeLayout(false);
|
|
}
|
|
|
|
// Token: 0x04000043 RID: 67
|
|
private IContainer components = null;
|
|
|
|
// Token: 0x04000044 RID: 68
|
|
private Button button_mm;
|
|
|
|
// Token: 0x04000045 RID: 69
|
|
private Button button_am;
|
|
|
|
// Token: 0x04000046 RID: 70
|
|
private Button button_aa;
|
|
|
|
// Token: 0x0200005C RID: 92
|
|
// (Invoke) Token: 0x060001A4 RID: 420
|
|
public delegate void DataSender(string value);
|
|
}
|
|
}
|