AI_MMI_Analyser/c_Sharp_Code/subFrom/atcstatselform.cs

136 lines
4.5 KiB
C#

using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Windows.Forms;
namespace SL200_RTLogViewer.subForm
{
// Token: 0x0200000C RID: 12
public class atcStatSelForm : Form
{
// Token: 0x14000003 RID: 3
// (add) Token: 0x0600004F RID: 79 RVA: 0x0000616C File Offset: 0x0000436C
// (remove) Token: 0x06000050 RID: 80 RVA: 0x000061A4 File Offset: 0x000043A4
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public event atcStatSelForm.DataSender CloseEvent;
// Token: 0x06000051 RID: 81 RVA: 0x000061D9 File Offset: 0x000043D9
public atcStatSelForm()
{
this.InitializeComponent();
}
// Token: 0x06000052 RID: 82 RVA: 0x000061F1 File Offset: 0x000043F1
private void button_ipdt_Click(object sender, EventArgs e)
{
this.CloseEvent(((Button)sender).Text);
base.Close();
}
// Token: 0x06000053 RID: 83 RVA: 0x00006212 File Offset: 0x00004412
private void button_mpdt_Click(object sender, EventArgs e)
{
this.CloseEvent(((Button)sender).Text);
base.Close();
}
// Token: 0x06000054 RID: 84 RVA: 0x00006233 File Offset: 0x00004433
private void button_active_Click(object sender, EventArgs e)
{
this.CloseEvent(((Button)sender).Text);
base.Close();
}
// Token: 0x06000055 RID: 85 RVA: 0x00006254 File Offset: 0x00004454
private void button_standby_Click(object sender, EventArgs e)
{
this.CloseEvent(((Button)sender).Text);
base.Close();
}
// Token: 0x06000056 RID: 86 RVA: 0x00006278 File Offset: 0x00004478
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x06000057 RID: 87 RVA: 0x000062B0 File Offset: 0x000044B0
private void InitializeComponent()
{
this.button_mpdt = new Button();
this.button_ipdt = new Button();
this.button_standby = new Button();
this.button_active = new Button();
base.SuspendLayout();
this.button_mpdt.Font = new Font("맑은 고딕", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 129);
this.button_mpdt.Location = new Point(75, 1);
this.button_mpdt.Name = "button_mpdt";
this.button_mpdt.Size = new Size(75, 42);
this.button_mpdt.TabIndex = 3;
this.button_mpdt.Text = "Manual PDT";
this.button_mpdt.UseVisualStyleBackColor = true;
this.button_mpdt.Click += this.button_mpdt_Click;
this.button_ipdt.Font = new Font("맑은 고딕", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 129);
this.button_ipdt.Location = new Point(1, 1);
this.button_ipdt.Name = "button_ipdt";
this.button_ipdt.Size = new Size(75, 42);
this.button_ipdt.TabIndex = 2;
this.button_ipdt.Text = "Initial \r\nPDT";
this.button_ipdt.UseVisualStyleBackColor = true;
this.button_ipdt.Click += this.button_ipdt_Click;
this.button_standby.Font = new Font("맑은 고딕", 9f, FontStyle.Bold, GraphicsUnit.Point, 129);
this.button_standby.Location = new Point(223, 1);
this.button_standby.Name = "button_standby";
this.button_standby.Size = new Size(75, 42);
this.button_standby.TabIndex = 5;
this.button_standby.Text = "ATC STANDBY";
this.button_standby.UseVisualStyleBackColor = true;
this.button_standby.Click += this.button_standby_Click;
this.button_active.Font = new Font("맑은 고딕", 9f, FontStyle.Bold, GraphicsUnit.Point, 129);
this.button_active.Location = new Point(149, 1);
this.button_active.Name = "button_active";
this.button_active.Size = new Size(75, 42);
this.button_active.TabIndex = 4;
this.button_active.Text = "ATC ACTIVE";
this.button_active.UseVisualStyleBackColor = true;
this.button_active.Click += this.button_active_Click;
base.AutoScaleMode = AutoScaleMode.None;
this.BackColor = SystemColors.HotTrack;
base.ClientSize = new Size(300, 46);
base.Controls.Add(this.button_standby);
base.Controls.Add(this.button_active);
base.Controls.Add(this.button_mpdt);
base.Controls.Add(this.button_ipdt);
base.FormBorderStyle = FormBorderStyle.None;
base.Name = "atcStatSelForm";
this.Text = "atcStatSelForm";
base.ResumeLayout(false);
}
// Token: 0x04000036 RID: 54
private IContainer components = null;
// Token: 0x04000037 RID: 55
private Button button_mpdt;
// Token: 0x04000038 RID: 56
private Button button_ipdt;
// Token: 0x04000039 RID: 57
private Button button_standby;
// Token: 0x0400003A RID: 58
private Button button_active;
// Token: 0x0200005A RID: 90
// (Invoke) Token: 0x0600019C RID: 412
public delegate void DataSender(string value);
}
}