6761 lines
267 KiB
C#
6761 lines
267 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Windows.Forms.DataVisualization.Charting;
|
|
using AquaControls;
|
|
using MetroFramework;
|
|
using MetroFramework.Controls;
|
|
using Microsoft.CSharp.RuntimeBinder;
|
|
using Microsoft.Office.Interop.Excel;
|
|
using Microsoft.Win32;
|
|
using SL200_RealtimeLogViewer.RealtimeLog;
|
|
using SL200_RTLogViewer.lib;
|
|
using SL200_RTLogViewer.Properties;
|
|
|
|
namespace SL200_RTLogViewer.subForm
|
|
{
|
|
// Token: 0x02000013 RID: 19
|
|
public class mmiUI : Form
|
|
{
|
|
// Token: 0x14000008 RID: 8
|
|
// (add) Token: 0x0600009B RID: 155 RVA: 0x0000A46C File Offset: 0x0000866C
|
|
// (remove) Token: 0x0600009C RID: 156 RVA: 0x0000A4A4 File Offset: 0x000086A4
|
|
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
|
public event mmiUI.DataSender SenderEvent;
|
|
|
|
// Token: 0x14000009 RID: 9
|
|
// (add) Token: 0x0600009D RID: 157 RVA: 0x0000A4DC File Offset: 0x000086DC
|
|
// (remove) Token: 0x0600009E RID: 158 RVA: 0x0000A514 File Offset: 0x00008714
|
|
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
|
public event mmiUI.funtionCall CallEvent;
|
|
|
|
// Token: 0x0600009F RID: 159 RVA: 0x0000A54C File Offset: 0x0000874C
|
|
public mmiUI()
|
|
{
|
|
this.InitializeComponent();
|
|
base.AutoScaleMode = AutoScaleMode.None;
|
|
}
|
|
|
|
// Token: 0x060000A0 RID: 160 RVA: 0x0000A61C File Offset: 0x0000881C
|
|
private void mmiUI_Load(object sender, EventArgs e)
|
|
{
|
|
this._mstationInfoList = new List<StationInfo>();
|
|
this._chartSize = 800;
|
|
this.chart1.ChartAreas[0].AxisX.Interval = 50.0;
|
|
this.chart1.ChartAreas[0].AxisX.Minimum = 0.0;
|
|
this.chart1.ChartAreas[0].AxisX.Maximum = (double)this._chartSize;
|
|
this.chart1.ChartAreas[0].AxisX.ScaleView.Size = (double)this._chartSize;
|
|
this.chart1.ChartAreas[0].AxisX.MajorGrid.Interval = (double)(this._chartSize / 10);
|
|
this.chart1.ChartAreas[0].AxisY.MajorGrid.Interval = 10.0;
|
|
this.chart1.ChartAreas[0].AxisX.LabelStyle.Interval = 300.0;
|
|
this.chart1.ChartAreas[0].AxisX.LabelStyle.IntervalType = DateTimeIntervalType.NotSet;
|
|
bool flag = !Form1.logOn;
|
|
if (flag)
|
|
{
|
|
this.timer2.Start();
|
|
}
|
|
this.listViewHOL.DoubleBuffered(true);
|
|
this.listViewJJAC.DoubleBuffered(true);
|
|
this.chart1.DoubleBuffered(true);
|
|
this.serATC = this.chart1.Series["atc"];
|
|
this.serTASC = this.chart1.Series["tasc"];
|
|
this.serSpeed = this.chart1.Series["speed"];
|
|
this.serPWM = this.chart1.Series["pwm"];
|
|
this.serStation = this.chart1.Series["station"];
|
|
this._dataIndex = 0;
|
|
this._prevCursorPos = 0;
|
|
this.btnZoomPrevious.Visible = !Form1.logOn;
|
|
this.pg1Pt = 0;
|
|
this.pg2Pt = 0;
|
|
this.pg33Pt = 0;
|
|
this.pg1dt = false;
|
|
this.pg2dt = false;
|
|
this.pg3dt = false;
|
|
this.pgXdt = false;
|
|
this.pgATSdt = false;
|
|
this.wrpg3 = false;
|
|
this.twcdt = false;
|
|
this.addstationmaker = true;
|
|
this.preStaion = "";
|
|
this.isTC1 = false;
|
|
this.serStation.MarkerColor = Color.White;
|
|
this.sc = Screen.AllScreens;
|
|
this.tt = new ToolTip();
|
|
}
|
|
|
|
// Token: 0x060000A1 RID: 161 RVA: 0x0000A8E8 File Offset: 0x00008AE8
|
|
public void StartLog()
|
|
{
|
|
this.realtimelog = new RealtimelogForm();
|
|
DateTime now = DateTime.Now;
|
|
string text = System.Windows.Forms.Application.StartupPath + "\\Pg\\" + now.ToString("yyyyMMdd");
|
|
string str = string.Format(now.ToString("MMddHHmm") + ".csv", Array.Empty<object>());
|
|
bool flag = !Directory.Exists(text);
|
|
if (flag)
|
|
{
|
|
Directory.CreateDirectory(text);
|
|
}
|
|
try
|
|
{
|
|
this._fileStream = new FileStream(text + "\\" + str, FileMode.OpenOrCreate, FileAccess.Write);
|
|
this.stw = new StreamWriter(this._fileStream, Encoding.UTF8);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000A2 RID: 162 RVA: 0x0000A9A4 File Offset: 0x00008BA4
|
|
private void timer2_Tick(object sender, EventArgs e)
|
|
{
|
|
this.isTC1 = this._mmi.tc1;
|
|
DateTime now = DateTime.Now;
|
|
this.lblHMI_TIME.Text = now.ToString("yyyy-MM-dd HH:mm:ss");
|
|
this.preStaion = Enum.GetName(typeof(StationCode), this._mmi.pstn);
|
|
this.markerDisplay();
|
|
this.serATC.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.limitspeed
|
|
});
|
|
this.serTASC.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.ato_limitSpeed
|
|
});
|
|
this.serSpeed.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.trainspeed
|
|
});
|
|
this.serPWM.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.pwm_value
|
|
});
|
|
bool flag = this.addstationmaker;
|
|
if (flag)
|
|
{
|
|
this.serStation.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
0
|
|
});
|
|
}
|
|
this.serATC.LegendText = "ATC(" + this._mmi.limitspeed.ToString() + ")";
|
|
this.serTASC.LegendText = "TASC(" + this._mmi.ato_limitSpeed.ToString() + ")";
|
|
bool flag2 = this._mmi.trainspeed < 10.0;
|
|
if (flag2)
|
|
{
|
|
this.serSpeed.LegendText = " SPEED( " + string.Format("{0:0.0}", this._mmi.trainspeed) + " )";
|
|
}
|
|
else
|
|
{
|
|
this.serSpeed.LegendText = " SPEED(" + string.Format("{0:0.0}", this._mmi.trainspeed) + ")";
|
|
}
|
|
this.serPWM.LegendText = "PWM(" + this._mmi.pwm_value.ToString() + ")";
|
|
bool flag3 = this.preStaion != "None" && this.preStaion != "" && !this.twcdt && this._mmi.door_open;
|
|
if (flag3)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.twcdt = true;
|
|
DataPoint dataPoint = new DataPoint();
|
|
dataPoint.Label = this.preStaion;
|
|
dataPoint.MarkerColor = Color.Black;
|
|
dataPoint.SetValueXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points.Add(dataPoint);
|
|
this.addstationmaker = true;
|
|
this.CallEvent();
|
|
this.chart1.Update();
|
|
}
|
|
bool flag4 = this._mmi.trainno != "0000" && this._mmi.trainno != null;
|
|
if (flag4)
|
|
{
|
|
this.serStation.Points[this.serStation.Points.Count - 1].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[this.serStation.Points.Count - 1].MarkerColor = Color.SeaGreen;
|
|
this.serStation.Points[this.serStation.Points.Count - 1].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
bool flag5 = this.serATC.Points.Count > this._chartSize;
|
|
if (flag5)
|
|
{
|
|
this.serATC.Points.RemoveAt(0);
|
|
this.serTASC.Points.RemoveAt(0);
|
|
this.serSpeed.Points.RemoveAt(0);
|
|
this.serPWM.Points.RemoveAt(0);
|
|
this.serStation.Points.RemoveAt(0);
|
|
}
|
|
this.DisplayMain();
|
|
this.Hide2HolJJacValue();
|
|
}
|
|
|
|
// Token: 0x060000A3 RID: 163 RVA: 0x0000AE60 File Offset: 0x00009060
|
|
public void chartDisplay()
|
|
{
|
|
this.isTC1 = this._mmi.tc1;
|
|
DateTime now = DateTime.Now;
|
|
this.lblTxtChanger(this.lblHMI_TIME, now.ToString("yyyy-MM-dd HH:mm:ss"));
|
|
this.preStaion = Enum.GetName(typeof(StationCode), this._mmi.pstn);
|
|
this.serATC.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.limitspeed
|
|
});
|
|
this.serTASC.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.ato_limitSpeed
|
|
});
|
|
this.serSpeed.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.trainspeed
|
|
});
|
|
this.serPWM.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
this._mmi.pwm_value
|
|
});
|
|
this.serStation.Points.AddXY(DateTime.Now.ToString("HH:mm:ss"), new object[]
|
|
{
|
|
0
|
|
});
|
|
this.serATC.LegendText = "ATC(" + this._mmi.limitspeed.ToString() + ")";
|
|
this.serTASC.LegendText = "TASC(" + this._mmi.ato_limitSpeed.ToString() + ")";
|
|
bool flag = this._mmi.trainspeed < 10.0;
|
|
if (flag)
|
|
{
|
|
this.serSpeed.LegendText = " SPEED( " + string.Format("{0:0.0}", this._mmi.trainspeed) + " )";
|
|
}
|
|
else
|
|
{
|
|
this.serSpeed.LegendText = " SPEED(" + string.Format("{0:0.0}", this._mmi.trainspeed) + ")";
|
|
}
|
|
this.serPWM.LegendText = "PWM(" + this._mmi.pwm_value.ToString() + ")";
|
|
while (this.serATC.Points.Count > this._chartSize)
|
|
{
|
|
this.serATC.Points.RemoveAt(0);
|
|
this.serTASC.Points.RemoveAt(0);
|
|
this.serSpeed.Points.RemoveAt(0);
|
|
this.serPWM.Points.RemoveAt(0);
|
|
this.serStation.Points.RemoveAt(0);
|
|
}
|
|
this.DisplayMain();
|
|
this.Hide2HolJJacValue();
|
|
this.chart1.Series.ResumeUpdates();
|
|
}
|
|
|
|
// Token: 0x060000A4 RID: 164 RVA: 0x0000B189 File Offset: 0x00009389
|
|
public void DisplayATCR(ATCR250Class atcr)
|
|
{
|
|
this._atcr250 = atcr;
|
|
this.listViewValueInput("ATCR");
|
|
}
|
|
|
|
// Token: 0x060000A5 RID: 165 RVA: 0x0000B19F File Offset: 0x0000939F
|
|
public void DisplayATCR(ATCR501Class atcr)
|
|
{
|
|
this._atcr501 = atcr;
|
|
this.listViewValueInput("ATCR");
|
|
}
|
|
|
|
// Token: 0x060000A6 RID: 166 RVA: 0x0000B1B5 File Offset: 0x000093B5
|
|
public void DisplayTWCT(TWCT320Class twct)
|
|
{
|
|
this._twct320 = twct;
|
|
this.listViewValueInput("TWCT");
|
|
}
|
|
|
|
// Token: 0x060000A7 RID: 167 RVA: 0x0000B1CB File Offset: 0x000093CB
|
|
public void DisplayATOR(ATOR160Class ator)
|
|
{
|
|
this._ator160 = ator;
|
|
this.listViewValueInput("ATOR");
|
|
}
|
|
|
|
// Token: 0x060000A8 RID: 168 RVA: 0x0000B1E1 File Offset: 0x000093E1
|
|
public void DisplayACPU(ACPU200Class acpu)
|
|
{
|
|
this._acpu200 = acpu;
|
|
this.listViewValueInput("ACPU");
|
|
}
|
|
|
|
// Token: 0x060000A9 RID: 169 RVA: 0x0000B1F7 File Offset: 0x000093F7
|
|
public void DisplayACPU(ACPU201Class acpu)
|
|
{
|
|
this._acpu201 = acpu;
|
|
this.listViewValueInput("ACPU");
|
|
}
|
|
|
|
// Token: 0x060000AA RID: 170 RVA: 0x0000B20D File Offset: 0x0000940D
|
|
public void DisplayACPU(ACPU202Class acpu)
|
|
{
|
|
this._acpu202 = acpu;
|
|
this.listViewValueInput("ACPU");
|
|
}
|
|
|
|
// Token: 0x060000AB RID: 171 RVA: 0x0000B223 File Offset: 0x00009423
|
|
public void DisplayCCC(CCC150Class ccc)
|
|
{
|
|
this._ccc150 = ccc;
|
|
this.listViewValueInput("CCC");
|
|
}
|
|
|
|
// Token: 0x060000AC RID: 172 RVA: 0x0000B239 File Offset: 0x00009439
|
|
public void DisplayCCC(CCC151Class ccc)
|
|
{
|
|
this._ccc151 = ccc;
|
|
this.listViewValueInput("CCC");
|
|
}
|
|
|
|
// Token: 0x060000AD RID: 173 RVA: 0x0000B24F File Offset: 0x0000944F
|
|
public void DisplayCCC(CCC152Class ccc)
|
|
{
|
|
this._ccc152 = ccc;
|
|
this.listViewValueInput("CCC");
|
|
}
|
|
|
|
// Token: 0x060000AE RID: 174 RVA: 0x0000B266 File Offset: 0x00009466
|
|
public void DisplayTcms(TCMStoDOSIClass tcms)
|
|
{
|
|
this._ftcms = tcms;
|
|
this.listViewValueInput("FTCMS");
|
|
}
|
|
|
|
// Token: 0x060000AF RID: 175 RVA: 0x0000B27C File Offset: 0x0000947C
|
|
public void DisplayTcms(DOSItoTCMSClass tcms)
|
|
{
|
|
this._tcms = tcms;
|
|
this.listViewValueInput("TCMS");
|
|
}
|
|
|
|
// Token: 0x060000B0 RID: 176 RVA: 0x0000B292 File Offset: 0x00009492
|
|
public void DisplayMmi(MMItoDOSIClass mmi)
|
|
{
|
|
this._fmmi = mmi;
|
|
this.listViewValueInput("FMMI");
|
|
}
|
|
|
|
// Token: 0x060000B1 RID: 177 RVA: 0x0000B2A8 File Offset: 0x000094A8
|
|
public void DisplayMmi(DOSItoMMIClass mmi)
|
|
{
|
|
this._mmi = mmi;
|
|
this.listViewValueInput("MMI");
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this.markerDisplay();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B2 RID: 178 RVA: 0x0000B2E0 File Offset: 0x000094E0
|
|
public void markerDisplay()
|
|
{
|
|
bool flag = (this._mmi.fa || this._mmi.auto || this._mmi.mcs) && this._mmi.reversingrod_fwd && this._mmi.door_close && this._mmi.trainspeed < 3.0 && !this._mmi.trac_br;
|
|
if (flag)
|
|
{
|
|
this.startPt = (int)this._mmi.dtg;
|
|
this.pg1dt = false;
|
|
this.pg2dt = false;
|
|
this.pg3dt = false;
|
|
this.pgXdt = false;
|
|
this.wrpg3 = false;
|
|
this.lblTxtChanger(this.lblHMI_PG1DIST, "--");
|
|
this.lblTxtChanger(this.lblHMI_PG2DIST, "--");
|
|
this.lblTxtChanger(this.lblHMI_PG32DIST, "--");
|
|
}
|
|
bool flag2 = !this._acpu202.sel;
|
|
if (!flag2)
|
|
{
|
|
bool tasc = this._mmi.tasc;
|
|
if (tasc)
|
|
{
|
|
bool flag3 = this.pg3dt;
|
|
if (flag3)
|
|
{
|
|
this.virDTG = (int)this._mmi.dtg - this.pg33Pt;
|
|
}
|
|
else
|
|
{
|
|
bool flag4 = this.pg2dt;
|
|
if (flag4)
|
|
{
|
|
this.virDTG = 360 - ((int)this._mmi.dtg - this.pg2Pt);
|
|
}
|
|
else
|
|
{
|
|
bool flag5 = this.pg1dt;
|
|
if (flag5)
|
|
{
|
|
this.virDTG = 3700 - ((int)this._mmi.dtg - this.pg1Pt);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
bool flag6 = this._mmi.marker == "-";
|
|
if (!flag6)
|
|
{
|
|
bool flag7 = this._mmi.marker == "PGX";
|
|
if (flag7)
|
|
{
|
|
bool flag8 = !this.pgXdt;
|
|
if (flag8)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.pgXdt = true;
|
|
int index = this.serStation.Points.Count - 1;
|
|
this.serStation.Points[index].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[index].MarkerColor = Color.Navy;
|
|
this.serStation.Points[index].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[index].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[index].Label = "PGX";
|
|
this.addstationmaker = true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag9 = this._mmi.marker == "PG1";
|
|
if (flag9)
|
|
{
|
|
bool flag10 = !this.pg1dt;
|
|
if (flag10)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.pg1dt = true;
|
|
int index2 = this.serStation.Points.Count - 1;
|
|
this.serStation.Points[index2].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[index2].MarkerColor = Color.Navy;
|
|
this.serStation.Points[index2].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[index2].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[index2].Label = "PG1";
|
|
this.addstationmaker = true;
|
|
this.pg1Pt = (int)this._mmi.dtg;
|
|
this.virDTG = 3700;
|
|
int num = this.pg1Pt - this.startPt;
|
|
bool flag11 = num < 0;
|
|
if (flag11)
|
|
{
|
|
num += 65535;
|
|
}
|
|
this.lblTxtChanger(this.lblHMI_PG1DIST, (double)num / 10.0);
|
|
}
|
|
this.twcdt = false;
|
|
}
|
|
else
|
|
{
|
|
bool flag12 = this._mmi.marker == "PG2";
|
|
if (flag12)
|
|
{
|
|
this.virDTG = 360;
|
|
bool flag13 = !this.pg2dt;
|
|
if (flag13)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.pg2dt = true;
|
|
int index3 = this.serStation.Points.Count - 1;
|
|
this.serStation.Points[index3].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[index3].MarkerColor = Color.Navy;
|
|
this.serStation.Points[index3].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[index3].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[index3].Label = "PG2";
|
|
this.addstationmaker = true;
|
|
this.pg2Pt = (int)this._mmi.dtg;
|
|
int num2 = this.pg2Pt - this.pg1Pt;
|
|
bool flag14 = num2 < 0;
|
|
if (flag14)
|
|
{
|
|
num2 += 65535;
|
|
}
|
|
this.lblTxtChanger(this.lblHMI_PG2DIST, (double)num2 / 10.0);
|
|
this.stw.WriteLine("{0},{1},{2}", "", "PG2", this.lblHMI_liveOSCf.Text);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag15 = this._mmi.marker == "PG3-2";
|
|
if (flag15)
|
|
{
|
|
bool flag16 = !this.pg3dt;
|
|
if (flag16)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.pg3dt = true;
|
|
int index4 = this.serStation.Points.Count - 1;
|
|
this.serStation.Points[index4].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[index4].MarkerColor = Color.Navy;
|
|
this.serStation.Points[index4].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[index4].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[index4].Label = "PG3-2";
|
|
this.addstationmaker = true;
|
|
this.pg33Pt = (int)this._mmi.dtg;
|
|
int num3 = this.pg33Pt - this.pg2Pt;
|
|
bool flag17 = num3 < 0;
|
|
if (flag17)
|
|
{
|
|
num3 += 65535;
|
|
}
|
|
this.lblTxtChanger(this.lblHMI_PG32DIST, (double)num3 / 10.0);
|
|
this.stw.WriteLine("{0},{1},{2}", "", "PG3-2", this.lblHMI_liveOSCf.Text);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag18 = this._mmi.marker == "ATS";
|
|
if (flag18)
|
|
{
|
|
bool flag19 = !this.pgATSdt;
|
|
if (flag19)
|
|
{
|
|
this.addstationmaker = false;
|
|
this.pgATSdt = true;
|
|
int index5 = this.serStation.Points.Count - 1;
|
|
this.serStation.Points[index5].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[index5].MarkerColor = Color.Navy;
|
|
this.serStation.Points[index5].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[index5].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[index5].Label = "ATS";
|
|
this.addstationmaker = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B3 RID: 179 RVA: 0x0000BAC4 File Offset: 0x00009CC4
|
|
public void showChart(int startidx)
|
|
{
|
|
this.chart1.ChartAreas[0].AxisX.ScaleView.Size = (double)this._chartSize;
|
|
this.chart1.ChartAreas[0].AxisX.Maximum = (double)this._chartSize;
|
|
this.chart1.ChartAreas[0].AxisX.LabelStyle.Interval = (double)(this._chartSize / 10);
|
|
this.pg1dt = false;
|
|
this.pg2dt = false;
|
|
this.pg3dt = false;
|
|
this.pgXdt = false;
|
|
this.pgATSdt = false;
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
int num = this._chartSize >> 1;
|
|
int num2 = 0;
|
|
int num3 = 0;
|
|
int num4 = 0;
|
|
bool flag2 = startidx < 0;
|
|
if (flag2)
|
|
{
|
|
startidx = 0;
|
|
}
|
|
else
|
|
{
|
|
bool flag3 = startidx > this.dataSource.Count - 1;
|
|
if (flag3)
|
|
{
|
|
startidx = this.dataSource.Count - 1;
|
|
}
|
|
}
|
|
this._dataIndex = startidx;
|
|
bool flag4 = this.dataSource.Count < this._chartSize || this._dataIndex < num;
|
|
if (flag4)
|
|
{
|
|
num2 = 0;
|
|
num3 = this._chartSize - 1;
|
|
num4 = this._dataIndex;
|
|
}
|
|
else
|
|
{
|
|
bool flag5 = this._dataIndex > this.dataSource.Count - num;
|
|
if (flag5)
|
|
{
|
|
num2 = this.dataSource.Count - this._chartSize;
|
|
num3 = this.dataSource.Count - 1;
|
|
num4 = this._dataIndex - num2;
|
|
}
|
|
else
|
|
{
|
|
num2 = this._dataIndex - num;
|
|
num3 = this._dataIndex + num - 1;
|
|
num4 = num;
|
|
}
|
|
}
|
|
bool flag6 = num3 > this.dataSource.Count;
|
|
if (flag6)
|
|
{
|
|
num3 = this.dataSource.Count;
|
|
}
|
|
this.chartClear();
|
|
for (int i = 0; i < this._chartSize; i++)
|
|
{
|
|
bool flag7 = num2 + i < this.dataSource.Count;
|
|
if (flag7)
|
|
{
|
|
MergedData mergedData = this.dataSource[num2 + i];
|
|
bool @checked = this.metroCheckBox_atc.Checked;
|
|
if (@checked)
|
|
{
|
|
this.serATC.Points.AddXY((double)i, mergedData.mmiData.limitspeed);
|
|
}
|
|
else
|
|
{
|
|
this.serATC.Points.AddXY((double)i, 0.0);
|
|
}
|
|
bool checked2 = this.metroCheckBox_tasc.Checked;
|
|
if (checked2)
|
|
{
|
|
this.serTASC.Points.AddXY((double)i, mergedData.mmiData.ato_limitSpeed);
|
|
}
|
|
bool checked3 = this.metroCheckBox_speed.Checked;
|
|
if (checked3)
|
|
{
|
|
this.serSpeed.Points.AddXY((double)i, mergedData.mmiData.trainspeed);
|
|
}
|
|
bool checked4 = this.metroCheckBox_pwm.Checked;
|
|
if (checked4)
|
|
{
|
|
this.serPWM.Points.AddXY((double)i, mergedData.mmiData.pwm_value);
|
|
}
|
|
this.serStation.Points.AddXY(i, new object[]
|
|
{
|
|
""
|
|
});
|
|
bool flag8 = this.dataSource[num2 + i].mmiData.marker == "PGX";
|
|
if (flag8)
|
|
{
|
|
i = this.serStation.Points.Count - 1;
|
|
bool flag9 = !this.pgXdt;
|
|
if (flag9)
|
|
{
|
|
this.pgXdt = true;
|
|
this.serStation.Points[i].Label = "PGX";
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.Navy;
|
|
this.serStation.Points[i].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag10 = this.dataSource[num2 + i].mmiData.marker == "PG1";
|
|
if (flag10)
|
|
{
|
|
i = this.serStation.Points.Count - 1;
|
|
bool flag11 = !this.pg1dt;
|
|
if (flag11)
|
|
{
|
|
this.pg1dt = true;
|
|
this.serStation.Points[i].Label = "PG1";
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.Navy;
|
|
this.serStation.Points[i].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
this.pg2dt = false;
|
|
this.pg3dt = false;
|
|
}
|
|
else
|
|
{
|
|
bool flag12 = this.dataSource[num2 + i].mmiData.marker == "PG2";
|
|
if (flag12)
|
|
{
|
|
i = this.serStation.Points.Count - 1;
|
|
this.virDTG = 360;
|
|
bool flag13 = !this.pg2dt;
|
|
if (flag13)
|
|
{
|
|
this.serStation.Points[i].Label = "PG2";
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.Navy;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
this.serStation.Points[i].LabelForeColor = Color.Navy;
|
|
}
|
|
this.pg2dt = true;
|
|
}
|
|
else
|
|
{
|
|
bool flag14 = this.dataSource[num2 + i].mmiData.marker == "PG3-2";
|
|
if (flag14)
|
|
{
|
|
i = this.serStation.Points.Count - 1;
|
|
bool flag15 = !this.pg3dt;
|
|
if (flag15)
|
|
{
|
|
this.serStation.Points[i].Label = "PG3-2";
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.Navy;
|
|
this.serStation.Points[i].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
this.pg3dt = true;
|
|
this.pg1dt = false;
|
|
this.pgXdt = false;
|
|
}
|
|
else
|
|
{
|
|
bool flag16 = this.dataSource[num2 + i].mmiData.marker == "ATS";
|
|
if (flag16)
|
|
{
|
|
i = this.serStation.Points.Count - 1;
|
|
bool flag17 = !this.pgATSdt;
|
|
if (flag17)
|
|
{
|
|
this.serStation.Points[i].Label = "ATS";
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.Navy;
|
|
this.serStation.Points[i].LabelForeColor = Color.Navy;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
this.pgATSdt = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
bool flag18 = this.dataSource[num2 + i].mmiData.trainno != "0000";
|
|
if (flag18)
|
|
{
|
|
this.serStation.Points[i].SetValueY(new object[]
|
|
{
|
|
100
|
|
});
|
|
this.serStation.Points[i].MarkerColor = Color.SeaGreen;
|
|
this.serStation.Points[i].MarkerStyle = MarkerStyle.Square;
|
|
}
|
|
try
|
|
{
|
|
bool flag19 = this.dataSource[num2 + i].mmiData.source == 80U;
|
|
if (flag19)
|
|
{
|
|
this.serATC.Points[i].AxisLabel = "0";
|
|
}
|
|
else
|
|
{
|
|
bool flag20 = this.dataSource[num2 + i].mmiData.time != "2000.00.00 00:00:00";
|
|
if (flag20)
|
|
{
|
|
this.serATC.Points[i].AxisLabel = Convert.ToDateTime(this.dataSource[num2 + i].mmiData.time).ToString("HH:mm:ss");
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
foreach (StationInfo stationInfo in this._mstationInfoList)
|
|
{
|
|
bool flag21 = num2 <= stationInfo.LogIndex && stationInfo.LogIndex <= num3;
|
|
if (flag21)
|
|
{
|
|
DataPoint dataPoint = new DataPoint();
|
|
dataPoint.Label = stationInfo.StationName;
|
|
dataPoint.SetValueXY(stationInfo.LogIndex - num2, new object[]
|
|
{
|
|
100
|
|
});
|
|
dataPoint.MarkerColor = Color.Black;
|
|
this.serStation.Points.Add(dataPoint);
|
|
}
|
|
}
|
|
this.serATC.LegendText = " ATC(" + this.dataSource[startidx].mmiData.limitspeed.ToString() + ")";
|
|
this.serTASC.LegendText = " TASC(" + this.dataSource[startidx].mmiData.ato_limitSpeed.ToString() + ")";
|
|
bool flag22 = this.dataSource[startidx].mmiData.trainspeed < 10.0;
|
|
if (flag22)
|
|
{
|
|
this.serSpeed.LegendText = " SPEED( " + string.Format("{0:0.0}", this.dataSource[startidx].mmiData.trainspeed) + " )";
|
|
}
|
|
else
|
|
{
|
|
this.serSpeed.LegendText = " SPEED(" + string.Format("{0:0.0}", this.dataSource[startidx].mmiData.trainspeed) + ")";
|
|
}
|
|
this.serPWM.LegendText = " PWM(" + this.dataSource[startidx].mmiData.pwm_value.ToString() + ")";
|
|
this.chart1.ChartAreas[0].CursorX.Position = (double)num4;
|
|
this._prevCursorPos = num4;
|
|
this.setDataMergetoClass(this.dataSource[this._dataIndex]);
|
|
this.DisplayMain();
|
|
this.Hide2HolJJacValue();
|
|
bool flag23 = this.dataSource.Count > this._dataIndex;
|
|
if (flag23)
|
|
{
|
|
this.lblHMI_TIME.Text = this.dataSource[this._dataIndex].mmiData.time.ToString();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B4 RID: 180 RVA: 0x0000C6E8 File Offset: 0x0000A8E8
|
|
public void setDataMergetoClass(MergedData mergedData)
|
|
{
|
|
this.DisplayACPU(mergedData.acpu200Data);
|
|
this.DisplayACPU(mergedData.acpu201Data);
|
|
this.DisplayACPU(mergedData.acpu202Data);
|
|
this.DisplayATCR(mergedData.atcr501Data);
|
|
this.DisplayATCR(mergedData.atcr250Data);
|
|
this.DisplayCCC(mergedData.ccc150Data);
|
|
this.DisplayCCC(mergedData.ccc151Data);
|
|
this.DisplayCCC(mergedData.ccc152Data);
|
|
this.DisplayMmi(mergedData.mmiData);
|
|
this.DisplayMmi(mergedData.fmmiDaTa);
|
|
this.DisplayTcms(mergedData.tcmsData);
|
|
this.DisplayTcms(mergedData.ftcmsData);
|
|
}
|
|
|
|
// Token: 0x060000B5 RID: 181 RVA: 0x0000C794 File Offset: 0x0000A994
|
|
public void initChart(List<MergedData> _dataSource, int startidx)
|
|
{
|
|
this.timer2.Stop();
|
|
bool flag = _dataSource.Count == 0;
|
|
if (!flag)
|
|
{
|
|
this._prevCursorPos = 0;
|
|
this._dataIndex = 0;
|
|
int num = _dataSource.Count + startidx;
|
|
this.chartClear();
|
|
this.DisplayMmi(_dataSource[startidx].mmiData);
|
|
this.DisplayMain();
|
|
this.dataSource = _dataSource;
|
|
this.showChart(0);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B6 RID: 182 RVA: 0x0000C804 File Offset: 0x0000AA04
|
|
public void chartClear()
|
|
{
|
|
for (int i = 0; i < this.chart1.Series.Count; i++)
|
|
{
|
|
this.chart1.Series[i].Points.Clear();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B7 RID: 183 RVA: 0x0000C850 File Offset: 0x0000AA50
|
|
public void DisplayMain()
|
|
{
|
|
this.lblColorChanger(this.lblHMI_tasc, this._mmi.tasc);
|
|
this.lblColorChanger(this.lblHMI_system_active, this._mmi.system_active);
|
|
this.lblColorChanger(this.lblHMI_do_zvr, this._mmi.do_zvr);
|
|
this.lblColorChanger(this.lblHMI_do_edl, this._mmi.do_edl);
|
|
this.lblColorChanger(this.lblHMI_do_edr, this._mmi.do_edr);
|
|
this.lblColorChanger(this.lblHMI_do_fsb, this._mmi.do_fsb);
|
|
this.lblColorChanger(this.lblHMI_do_ebm, this._mmi.do_ebm);
|
|
this.lblColorChanger(this.lblHMI_do_ebp, this._mmi.do_ebp);
|
|
this.lblColorChanger(this.lblHMI_wheelcheck, this._mmi.wheelcheck);
|
|
this.lblColorChanger(this.lblHMI_tcr, this._mmi.tcr);
|
|
this.lblColorChanger(this.lblHMI_hcr, this._mmi.hcr);
|
|
this.lblColorChanger(this.lblHMI_door_open, this._mmi.door_open);
|
|
this.lblColorChanger(this.lblHMI_door_close, this._mmi.door_close);
|
|
this.lblColorChanger(this.lblHMI_psd_open, this._mmi.psd_open);
|
|
this.lblColorChanger(this.lblHMI_psd_close, this._mmi.psd_close);
|
|
this.lblColorChanger(this.lblHMI_reversingrod_fwd, this._mmi.reversingrod_fwd);
|
|
this.lblColorChanger(this.lblHMI_reversingrod_rvs, this._mmi.reversingrod_rvs);
|
|
this.lblColorChanger(this.lblHMI_reversingrod_neu, this._mmi.reversingrod_neu);
|
|
this.lblColorChangerF(this.lblHMI_fail_atoc, this._mmi.fail_atoc);
|
|
this.lblColorChangerF(this.lblHMI_fail_tcms, this._mmi.fail_tcms);
|
|
this.lblColorChangerF(this.lblHMI_fail_tacho1, this._mmi.fail_tacho1);
|
|
this.lblColorChangerF(this.lblHMI_fail_tacho2, this._mmi.fail_tacho2);
|
|
this.lblColorChanger(this.lblHMI_over_spd_warning, this._mmi.over_spd_warning);
|
|
this.lblColorChanger(this.lblHMI_trac_dr, this._mmi.trac_dr);
|
|
this.lblColorChanger(this.lblHMI_trac_br, this._mmi.trac_br);
|
|
this.lblColorChanger(this.lblHMI_trac_cs, this._mmi.trac_cs);
|
|
this.lblColorChanger(this.lblHMI_adol, this._mmi.adol);
|
|
this.lblColorChanger(this.lblHMI_ador, this._mmi.ador);
|
|
this.lblColorChanger(this.lblHMI_adc, this._mmi.adc);
|
|
this.lblColorChanger(this.lblHMI_recovery, this._mmi.recovery);
|
|
this.lblColorChanger(this.lblHMI_nomal, this._mmi.nomal);
|
|
this.lblColorChanger(this.lblHMI_kur, this._mmi.kur);
|
|
this.lblColorChanger(this.lblHMI_osc, this._mmi.osc);
|
|
this.lblColorChanger(this.lblHMI_inching, this._mmi.inching);
|
|
this.lblColorChanger(this.lblHMI_twct_en, this._mmi.twct_enable);
|
|
this.lblColorChanger(this.lblHMI_door_close_warning, this._mmi.door_close_warning);
|
|
this.lblColorChanger(this.lblHMI_wrongdoor, this._mmi.wrongdoor);
|
|
this.lblColorChanger(this.lblHMI_tc1, this._mmi.tc1);
|
|
this.lblColorChanger(this.lblHMI_tc2, this._mmi.tc2);
|
|
this.lblColorChangerWarning(this.lblHMI_tascdb, this._mmi.tascdb);
|
|
this.lblColorChanger(this.lblHMI_ato_start_btn, this._mmi.ato_start_btn);
|
|
this.lblColorChanger(this.lblHMI_ato_eb_req, this._mmi.ato_eb_req);
|
|
this.lblColorChanger(this.lblHMI_tacho_dir_a, this._mmi.tacho_dir_a);
|
|
this.lblColorChanger(this.lblHMI_tacho_dir_b, this._mmi.tacho_dir_b);
|
|
this.lblColorChanger(this.lblHMI_mascon_br, this._mmi.mascon_br);
|
|
this.lblColorChanger(this.lblHMI_mascon_eb, this._mmi.mascon_eb);
|
|
this.lblColorChanger(this.lblHMI_mascon_dr, this._mmi.mascon_dr);
|
|
this.lblColorChanger(this.lblHMI_auto, this._mmi.auto);
|
|
this.lblColorChanger(this.lblHMI_fa, this._mmi.fa);
|
|
this.lblColorChanger(this.lblHMI_mcs, this._mmi.mcs);
|
|
this.lblColorChanger(this.lblHMI_yard, this._mmi.yard);
|
|
this.lblColorChanger(this.lblHMI_fmc, this._mmi.fmc);
|
|
this.lblColorChanger(this.lblHMI_osc_f0_ok, this._mmi.osc_f0_ok);
|
|
this.lblColorChanger(this.lblHMI_start_enable, this._mmi.start_enable);
|
|
this.lblColorChanger(this.lblHMI_pre_brake, this._mmi.pre_brake);
|
|
this.lblColorChanger(this.lblHMI_limit_drive, this._mmi.limit_drive);
|
|
this.lblColorChanger(this.lblHMI_ov_stop2, this._mmi.ov_stop2);
|
|
this.lblColorChanger(this.lblHMI_ov_stop1, this._mmi.ov_stop1);
|
|
this.lblColorChanger(this.lblHMI_sh_stop2, this._mmi.sh_stop2);
|
|
this.lblColorChanger(this.lblHMI_sh_stop1, this._mmi.sh_stop1);
|
|
this.lblColorChanger(this.lblHMI_trainberth, this._mmi.trainberth);
|
|
this.lblColorChanger(this.lb_VDIA_auto, this._mmi.vdia_auto);
|
|
this.lblColorChanger(this.lb_VDIA_fa, this._mmi.vdia_fa);
|
|
this.lblColorChanger(this.lb_VDIA_hcr, this._mmi.vdia_hcr);
|
|
this.lblColorChanger(this.lb_VDIA_tcr, this._mmi.vdia_tcr);
|
|
this.lblColorChanger(this.lb_VDIA_fmc, this._mmi.vdia_fmc);
|
|
this.lblColorChanger(this.lb_VDIA_yard, this._mmi.vdia_yard);
|
|
this.lblColorChanger(this.lb_VDIA_mcs, this._mmi.vdia_mcs);
|
|
this.lblColorChanger(this.lb_VDIA_rvs, this._mmi.vdia_rvs);
|
|
this.lblColorChanger(this.lb_VDIA_fwd, this._mmi.vdia_fwd);
|
|
this.lblColorChanger(this.lb_VDIA_neu, this._mmi.vdia_neu);
|
|
this.lblColorChanger(this.lb_VDIA_mascondr, this._mmi.vdia_mascondr);
|
|
this.lblColorChanger(this.lb_VDIA_masconbr, this._mmi.vdia_masconbr);
|
|
this.lblColorChanger(this.lb_VDIA_masconeb, this._mmi.vdia_masconeb);
|
|
this.lblColorChanger(this.lb_VDIA_doorclose, this._mmi.vdia_doorclose);
|
|
this.lblColorChanger(this.lb_VDIA_dooropen, this._mmi.vdia_dooropen);
|
|
this.lblColorChanger(this.lb_VDIB_auto, this._mmi.vdib_auto);
|
|
this.lblColorChanger(this.lb_VDIB_fa, this._mmi.vdib_fa);
|
|
this.lblColorChanger(this.lb_VDIB_hcr, this._mmi.vdib_hcr);
|
|
this.lblColorChanger(this.lb_VDIB_tcr, this._mmi.vdib_tcr);
|
|
this.lblColorChanger(this.lb_VDIB_fmc, this._mmi.vdib_fmc);
|
|
this.lblColorChanger(this.lb_VDIB_yard, this._mmi.vdib_yard);
|
|
this.lblColorChanger(this.lb_VDIB_mcs, this._mmi.vdib_mcs);
|
|
this.lblColorChanger(this.lb_VDIB_rvs, this._mmi.vdib_rvs);
|
|
this.lblColorChanger(this.lb_VDIB_fwd, this._mmi.vdib_fwd);
|
|
this.lblColorChanger(this.lb_VDIB_neu, this._mmi.vdib_neu);
|
|
this.lblColorChanger(this.lb_VDIB_mascondr, this._mmi.vdib_mascondr);
|
|
this.lblColorChanger(this.lb_VDIB_masconbr, this._mmi.vdib_masconbr);
|
|
this.lblColorChanger(this.lb_VDIB_masconeb, this._mmi.vdib_masconeb);
|
|
this.lblColorChanger(this.lb_VDIB_doorclose, this._mmi.vdib_doorclose);
|
|
this.lblColorChanger(this.lb_VDIB_dooropen, this._mmi.vdib_dooropen);
|
|
this.lblColorChanger(this.lb_VDIC_psdopen, this._mmi.vdic_psdopen);
|
|
this.lblColorChanger(this.lb_VDIC_psdclose, this._mmi.vdic_psdclose);
|
|
this.lblColorChanger(this.lb_VDIC_startbtn, this._mmi.vdic_startbtn);
|
|
this.lblColorChanger(this.lb_VDIC_unit1, this._mmi.vdic_unit1);
|
|
this.lblColorChanger(this.lb_VDIC_ebpfb, this._mmi.vdic_ebpfb);
|
|
this.lblColorChanger(this.lb_VDIC_ebmfb, this._mmi.vdic_ebmfb);
|
|
this.lblColorChanger(this.lb_VDIC_fsbfb, this._mmi.vdic_fsbfb);
|
|
this.lblColorChanger(this.lb_VDIC_zvrfb, this._mmi.vdic_zvrfb);
|
|
this.lblColorChanger(this.lb_VDIC_edrfb, this._mmi.vdic_edrfb);
|
|
this.lblColorChanger(this.lb_VDIC_edlfb, this._mmi.vdic_edlfb);
|
|
this.lblColorChanger(this.lb_VDIC_tc1, this._mmi.vdic_tc1);
|
|
this.lblColorChanger(this.lb_VDIC_tc2, this._mmi.vdic_tc2);
|
|
this.lblColorChanger(this.lb_VDID_psdopen, this._mmi.vdid_psdopen);
|
|
this.lblColorChanger(this.lb_VDID_psdclose, this._mmi.vdid_psdclose);
|
|
this.lblColorChanger(this.lb_VDID_startbtn, this._mmi.vdid_startbtn);
|
|
this.lblColorChanger(this.lb_VDID_unit1, this._mmi.vdid_unit1);
|
|
this.lblColorChanger(this.lb_VDID_ebpfb, this._mmi.vdid_ebpfb);
|
|
this.lblColorChanger(this.lb_VDID_ebmfb, this._mmi.vdid_ebmfb);
|
|
this.lblColorChanger(this.lb_VDID_fsbfb, this._mmi.vdid_fsbfb);
|
|
this.lblColorChanger(this.lb_VDID_zvrfb, this._mmi.vdid_zvrfb);
|
|
this.lblColorChanger(this.lb_VDID_edrfb, this._mmi.vdid_edrfb);
|
|
this.lblColorChanger(this.lb_VDID_edlfb, this._mmi.vdid_edlfb);
|
|
this.lblColorChanger(this.lb_VDID_tc1, this._mmi.vdid_tc1);
|
|
this.lblColorChanger(this.lb_VDID_tc2, this._mmi.vdid_tc2);
|
|
this.lblColorChanger(this.lb_VDOA_zvr, this._mmi.vdoa_zvr);
|
|
this.lblColorChanger(this.lb_VDOA_edl, this._mmi.vdoa_edl);
|
|
this.lblColorChanger(this.lb_VDOA_edr, this._mmi.vdoa_edr);
|
|
this.lblColorChanger(this.lb_VDOA_fsb, this._mmi.vdoa_fsb);
|
|
this.lblColorChanger(this.lb_VDOA_ebm, this._mmi.vdoa_ebm);
|
|
this.lblColorChanger(this.lb_VDOA_ebp, this._mmi.vdoa_ebp);
|
|
this.lblColorChanger(this.lb_VDOB_zvr, this._mmi.vdob_zvr);
|
|
this.lblColorChanger(this.lb_VDOB_edl, this._mmi.vdob_edl);
|
|
this.lblColorChanger(this.lb_VDOB_edr, this._mmi.vdob_edr);
|
|
this.lblColorChanger(this.lb_VDOB_fsb, this._mmi.vdob_fsb);
|
|
this.lblColorChanger(this.lb_VDOB_ebm, this._mmi.vdob_ebm);
|
|
this.lblColorChanger(this.lb_VDOB_ebp, this._mmi.vdob_ebp);
|
|
bool flag = this._mmi.ack_whd1 == 865U;
|
|
if (flag)
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_WHD1, "None");
|
|
}
|
|
else
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_WHD1, this._mmi.ack_whd1);
|
|
}
|
|
bool flag2 = this._mmi.ack_whd2 == 865U;
|
|
if (flag2)
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_WHD2, "None");
|
|
}
|
|
else
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_WHD2, this._mmi.ack_whd2);
|
|
}
|
|
this.lblTxtChanger(this.lblHMI_MPDT, this._mmi.mpdt);
|
|
this.lblTxtChanger(this.lblHMI_IPDT, this._mmi.ipdt);
|
|
this.lblTxtChanger(this.lblHMI_ATClimitSPD, this._mmi.limitspeed);
|
|
this.lblTxtChanger(this.lblHMI_ATOlimitSPD, this._mmi.ato_limitSpeed);
|
|
this.lblTxtChanger(this.lblHMI_SWver, this._mmi.atc_swver);
|
|
this.lblTxtChanger(this.lblHMI_PSTN, Enum.GetName(typeof(StationCode), this._mmi.pstn));
|
|
this.lblTxtChanger(this.lblHMI_NSTN, Enum.GetName(typeof(StationCode), this._mmi.nstn));
|
|
this.lblTxtChanger(this.lblHMI_LSTN, Enum.GetName(typeof(StationCode), this._mmi.dstn));
|
|
this.lblTxtChanger(this.lblHMI_NEXTDR, this._mmi.nextdoor);
|
|
this.lblTxtChanger(this.lblHMI_TCMSDR, this._mmi.tcmsdoor);
|
|
this.lblTxtChanger(this.lblHMI_DRMOD, this._mmi.doormod);
|
|
this.lblTxtChanger(this.lblHMI_TRNNO, this._mmi.trainno);
|
|
this.lblTxtChanger(this.lblHMI_pwm, this._mmi.pwm_value);
|
|
this.lblTxtChanger(this.lblHMI_marker, this._mmi.marker);
|
|
this.lblTxtChanger(this.lblHMI_ATCCOD, this._mmi.atc_code);
|
|
this.lblTxtChanger(this.lblHMI_ATC_CARRIERF, this._mmi.atc_carrier_f);
|
|
this.lblTxtChanger(this.lblHMI_ATC_CODE_CARRIERF, this._mmi.atc_code_carrier_f);
|
|
this.lblTxtChanger(this.lblHMI_ATC_CODEF, this._mmi.atc_code_f.ToString("F1"));
|
|
this.lblTxtChanger(this.lblHMI_movedistatnce, "");
|
|
bool flag3 = this._mmi.auto || this._mmi.fa;
|
|
if (flag3)
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_movedistatnce, this._mmi.dtg.ToString("F2"));
|
|
}
|
|
float num = (float)(this._mmi.trainspeed / 10.0);
|
|
int limitSpeed = (int)this._mmi.limitspeed;
|
|
this.aquaGauge1.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
this.aquaGauge1.Value = (float)this._mmi.trainspeed;
|
|
this.aquaGauge1.RecommendedValue = (float)limitSpeed;
|
|
}));
|
|
this.lblTxtChanger(this.lbl_Deceleration, this._mmi.trainspeed * this._mmi.trainspeed / this._mmi.dtg * 0.072);
|
|
bool flag4 = num > (float)limitSpeed;
|
|
if (flag4)
|
|
{
|
|
this.aquaGauge1.ValueColor = Color.Orange;
|
|
}
|
|
else
|
|
{
|
|
this.aquaGauge1.ValueColor = Color.White;
|
|
}
|
|
this.LVHMI_ERRMESS.Items.Clear();
|
|
this.ErrMsgDisplayer("DIAGNOSTIC", this._mmi.diagnostic_err_msg, this._mmi);
|
|
this.ErrMsgDisplayer("ATC", this._mmi.atc_err_msg, this._mmi);
|
|
this.ErrMsgDisplayer("INTERFACE", this._mmi.interface_err_msg, this._mmi);
|
|
this.ErrMsgDisplayer("ATO", this._mmi.ato_err_msg, this._mmi);
|
|
this.lblTxtChanger(this.lblHMI_liveOSCf, this._mmi.osc_f);
|
|
bool flag5 = this._mmi.source == 80U;
|
|
if (flag5)
|
|
{
|
|
this.lblTxtChanger(this.lblHMI_atcStatus, "운행보조모듈");
|
|
this.lblColorChangerWarning(this.lblHMI_atcStatus, true);
|
|
this.lblHMI_atcStatus.ForeColor = Color.WhiteSmoke;
|
|
}
|
|
else
|
|
{
|
|
this.lblHMI_atcStatus.BackColor = Color.DarkBlue;
|
|
this.lblHMI_atcStatus.ForeColor = Color.White;
|
|
this.lblTxtChanger(this.lblHMI_atcStatus, this._mmi.atc_status);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B8 RID: 184 RVA: 0x0000D8FC File Offset: 0x0000BAFC
|
|
public void ErrMsgDisplayer(string type, string ErrMsg, DOSItoMMIClass mmi)
|
|
{
|
|
try
|
|
{
|
|
bool flag = !string.IsNullOrEmpty(ErrMsg) && ErrMsg.Contains(":");
|
|
if (flag)
|
|
{
|
|
string[] array = ErrMsg.Split(new char[]
|
|
{
|
|
':'
|
|
});
|
|
for (int i = 0; i < array.Length - 1; i++)
|
|
{
|
|
string[] items = new string[]
|
|
{
|
|
type,
|
|
array[i]
|
|
};
|
|
ListViewItem value = new ListViewItem(items);
|
|
this.LVHMI_ERRMESS.Items.Add(value);
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000B9 RID: 185 RVA: 0x0000D998 File Offset: 0x0000BB98
|
|
public void listViewValueInput(string type)
|
|
{
|
|
try
|
|
{
|
|
for (int i = 0; i < this.listViewHIDE.Items.Count; i++)
|
|
{
|
|
string text = this.listViewHIDE.Items[i].SubItems[0].Text;
|
|
string text2 = text;
|
|
uint num = <PrivateImplementationDetails>.ComputeStringHash(text2);
|
|
if (num <= 1155320958U)
|
|
{
|
|
if (num <= 670519660U)
|
|
{
|
|
if (num != 323942130U)
|
|
{
|
|
if (num == 670519660U)
|
|
{
|
|
if (text2 == "TCMS")
|
|
{
|
|
bool flag = this.listViewHIDE.Items[i].SubItems[1].Text == "UART" && this.listViewHIDE.Items[i].SubItems[0].Text == "TCMS";
|
|
if (flag)
|
|
{
|
|
FieldInfo[] fields = typeof(DOSItoTCMSClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int j = 0; j < fields.Length; j++)
|
|
{
|
|
bool flag2 = fields[j].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag2)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._tcms.GetType().GetField(fields[j].Name).GetValue(this._tcms).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (text2 == "MMI")
|
|
{
|
|
bool flag3 = this.listViewHIDE.Items[i].SubItems[1].Text == "UART" && this.listViewHIDE.Items[i].SubItems[0].Text == "MMI";
|
|
if (flag3)
|
|
{
|
|
FieldInfo[] fields2 = typeof(DOSItoMMIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int k = 0; k < fields2.Length; k++)
|
|
{
|
|
bool flag4 = fields2[k].Name == this.listViewHIDE.Items[i].SubItems[2].Text.ToLower();
|
|
if (flag4)
|
|
{
|
|
bool flag5 = this._mmi.GetType().GetField(fields2[k].Name).GetValue(this._mmi).ToString() != null;
|
|
if (flag5)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._mmi.GetType().GetField(fields2[k].Name).GetValue(this._mmi).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (num != 1054371910U)
|
|
{
|
|
if (num == 1155320958U)
|
|
{
|
|
if (text2 == "FMMI")
|
|
{
|
|
bool flag6 = this.listViewHIDE.Items[i].SubItems[1].Text == "UART" && this.listViewHIDE.Items[i].SubItems[0].Text == "FMMI";
|
|
if (flag6)
|
|
{
|
|
FieldInfo[] fields3 = typeof(MMItoDOSIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int l = 0; l < fields3.Length; l++)
|
|
{
|
|
bool flag7 = fields3[l].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag7)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._fmmi.GetType().GetField(fields3[l].Name).GetValue(this._fmmi).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (text2 == "ACPU")
|
|
{
|
|
bool flag8 = this.listViewHIDE.Items[i].SubItems[1].Text == "200";
|
|
if (flag8)
|
|
{
|
|
FieldInfo[] fields4 = typeof(ACPU200Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int m = 0; m < fields4.Length; m++)
|
|
{
|
|
bool flag9 = fields4[m].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag9)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._acpu200.GetType().GetField(fields4[m].Name).GetValue(this._acpu200).ToString();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag10 = this.listViewHIDE.Items[i].SubItems[1].Text == "201";
|
|
if (flag10)
|
|
{
|
|
FieldInfo[] fields5 = typeof(ACPU201Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int n = 0; n < fields5.Length; n++)
|
|
{
|
|
bool flag11 = fields5[n].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag11)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._acpu201.GetType().GetField(fields5[n].Name).GetValue(this._acpu201).ToString();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag12 = this.listViewHIDE.Items[i].SubItems[1].Text == "202";
|
|
if (flag12)
|
|
{
|
|
FieldInfo[] fields6 = typeof(ACPU202Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num2 = 0; num2 < fields6.Length; num2++)
|
|
{
|
|
bool flag13 = fields6[num2].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag13)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._acpu202.GetType().GetField(fields6[num2].Name).GetValue(this._acpu202).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (num <= 3014100859U)
|
|
{
|
|
if (num != 1716134816U)
|
|
{
|
|
if (num == 3014100859U)
|
|
{
|
|
if (text2 == "TWCT")
|
|
{
|
|
bool flag14 = this.listViewHIDE.Items[i].SubItems[1].Text == "320";
|
|
if (flag14)
|
|
{
|
|
FieldInfo[] fields7 = typeof(TWCT320Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num3 = 0; num3 < fields7.Length; num3++)
|
|
{
|
|
bool flag15 = fields7[num3].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag15)
|
|
{
|
|
bool flag16 = this._twct320.GetType().GetField(fields7[num3].Name).GetValue(this._twct320) != null;
|
|
if (flag16)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._twct320.GetType().GetField(fields7[num3].Name).GetValue(this._twct320).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (text2 == "CCC")
|
|
{
|
|
bool flag17 = this.listViewHIDE.Items[i].SubItems[1].Text == "150";
|
|
if (flag17)
|
|
{
|
|
FieldInfo[] fields8 = typeof(CCC150Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num4 = 0; num4 < fields8.Length; num4++)
|
|
{
|
|
bool flag18 = fields8[num4].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag18)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._ccc150.GetType().GetField(fields8[num4].Name).GetValue(this._ccc150).ToString();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag19 = this.listViewHIDE.Items[i].SubItems[1].Text == "151";
|
|
if (flag19)
|
|
{
|
|
FieldInfo[] fields9 = typeof(CCC151Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num5 = 0; num5 < fields9.Length; num5++)
|
|
{
|
|
bool flag20 = fields9[num5].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag20)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._ccc151.GetType().GetField(fields9[num5].Name).GetValue(this._ccc151).ToString();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool flag21 = this.listViewHIDE.Items[i].SubItems[1].Text == "152";
|
|
if (flag21)
|
|
{
|
|
FieldInfo[] fields10 = typeof(CCC152Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num6 = 0; num6 < fields10.Length; num6++)
|
|
{
|
|
bool flag22 = fields10[num6].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag22)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._ccc152.GetType().GetField(fields10[num6].Name).GetValue(this._ccc152).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (num != 3429425040U)
|
|
{
|
|
if (num != 3437617337U)
|
|
{
|
|
if (num == 3571249909U)
|
|
{
|
|
if (text2 == "ATOR")
|
|
{
|
|
bool flag23 = this.listViewHIDE.Items[i].SubItems[1].Text == "160";
|
|
if (flag23)
|
|
{
|
|
FieldInfo[] fields11 = typeof(ATOR160Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num7 = 0; num7 < fields11.Length; num7++)
|
|
{
|
|
bool flag24 = fields11[num7].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag24)
|
|
{
|
|
bool flag25 = this._ator160.GetType().GetField(fields11[num7].Name).GetValue(this._ator160) != null;
|
|
if (flag25)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._ator160.GetType().GetField(fields11[num7].Name).GetValue(this._ator160).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (text2 == "ATCR")
|
|
{
|
|
bool flag26 = this.listViewHIDE.Items[i].SubItems[1].Text == "250";
|
|
if (flag26)
|
|
{
|
|
FieldInfo[] fields12 = typeof(ATCR250Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num8 = 0; num8 < fields12.Length; num8++)
|
|
{
|
|
bool flag27 = fields12[num8].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag27)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._atcr250.GetType().GetField(fields12[num8].Name).GetValue(this._atcr250).ToString();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
FieldInfo[] fields13 = typeof(ATCR501Class).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num9 = 0; num9 < fields13.Length; num9++)
|
|
{
|
|
bool flag28 = fields13[num9].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag28)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._atcr501.GetType().GetField(fields13[num9].Name).GetValue(this._atcr501).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (text2 == "FTCMS")
|
|
{
|
|
bool flag29 = this.listViewHIDE.Items[i].SubItems[1].Text == "UART" && this.listViewHIDE.Items[i].SubItems[0].Text == "FTCMS";
|
|
if (flag29)
|
|
{
|
|
FieldInfo[] fields14 = typeof(TCMStoDOSIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int num10 = 0; num10 < fields14.Length; num10++)
|
|
{
|
|
bool flag30 = fields14[num10].Name == this.listViewHIDE.Items[i].SubItems[2].Text;
|
|
if (flag30)
|
|
{
|
|
this.listViewHIDE.Items[i].SubItems[3].Text = this._ftcms.GetType().GetField(fields14[num10].Name).GetValue(this._ftcms).ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000BA RID: 186 RVA: 0x0000E9E8 File Offset: 0x0000CBE8
|
|
public void lblColorChangerF(Label label, bool on)
|
|
{
|
|
if (on)
|
|
{
|
|
label.ForeColor = Color.Black;
|
|
label.BackColor = Color.Red;
|
|
}
|
|
else
|
|
{
|
|
label.ForeColor = Color.White;
|
|
label.BackColor = Color.DarkGray;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000BB RID: 187 RVA: 0x0000EA34 File Offset: 0x0000CC34
|
|
public void lblTxtChanger(Label label, string val)
|
|
{
|
|
label.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
label.Text = val;
|
|
}));
|
|
}
|
|
|
|
// Token: 0x060000BC RID: 188 RVA: 0x0000EA70 File Offset: 0x0000CC70
|
|
public void lblTxtChanger(Label label, double val)
|
|
{
|
|
label.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
label.Text = val.ToString();
|
|
}));
|
|
}
|
|
|
|
// Token: 0x060000BD RID: 189 RVA: 0x0000EAAC File Offset: 0x0000CCAC
|
|
public void lblTxtChanger(Label label, uint val)
|
|
{
|
|
label.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
label.Text = val.ToString();
|
|
}));
|
|
}
|
|
|
|
// Token: 0x060000BE RID: 190 RVA: 0x0000EAE8 File Offset: 0x0000CCE8
|
|
public void lblColorChanger(Label label, bool on)
|
|
{
|
|
if (on)
|
|
{
|
|
label.ForeColor = Color.Black;
|
|
label.BackColor = Color.LawnGreen;
|
|
}
|
|
else
|
|
{
|
|
label.ForeColor = Color.White;
|
|
label.BackColor = Color.DarkGray;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000BF RID: 191 RVA: 0x0000EB34 File Offset: 0x0000CD34
|
|
public void lblColorChangerWarning(Label label, bool on)
|
|
{
|
|
if (on)
|
|
{
|
|
label.ForeColor = Color.Black;
|
|
label.BackColor = Color.Orange;
|
|
}
|
|
else
|
|
{
|
|
label.ForeColor = Color.White;
|
|
label.BackColor = Color.DarkGray;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C0 RID: 192 RVA: 0x0000EB80 File Offset: 0x0000CD80
|
|
public void isFormShow()
|
|
{
|
|
itemSelectForm itemSelectForm = new itemSelectForm();
|
|
itemSelectForm.Show();
|
|
itemSelectForm.SenderEvent += this.EventListviewAdder;
|
|
itemSelectForm.listViewAdded_Clone(this.listViewHIDE);
|
|
itemSelectForm.comboRefresh();
|
|
itemSelectForm.labelitemCount();
|
|
}
|
|
|
|
// Token: 0x060000C1 RID: 193 RVA: 0x0000EBCC File Offset: 0x0000CDCC
|
|
public void EventListviewAdder(ListView lv)
|
|
{
|
|
this.listViewJJAC.Items.Clear();
|
|
this.listViewHOL.Items.Clear();
|
|
this.listViewHIDE.Items.Clear();
|
|
for (int i = 0; i < lv.Items.Count; i++)
|
|
{
|
|
string[] items = new string[]
|
|
{
|
|
lv.Items[i].SubItems[0].Text,
|
|
lv.Items[i].SubItems[1].Text,
|
|
lv.Items[i].SubItems[2].Text,
|
|
""
|
|
};
|
|
ListViewItem value = new ListViewItem(items);
|
|
this.listViewHIDE.Items.Add(value);
|
|
}
|
|
for (int j = 0; j < this.listViewHIDE.Items.Count; j++)
|
|
{
|
|
bool flag = j % 2 == 0;
|
|
if (flag)
|
|
{
|
|
string[] items2 = new string[]
|
|
{
|
|
this.listViewHIDE.Items[j].SubItems[0].Text + "." + this.listViewHIDE.Items[j].SubItems[2].Text.ToUpper(),
|
|
this.listViewHIDE.Items[j].SubItems[3].Text
|
|
};
|
|
ListViewItem value2 = new ListViewItem(items2);
|
|
this.listViewJJAC.Items.Add(value2);
|
|
}
|
|
else
|
|
{
|
|
string[] items3 = new string[]
|
|
{
|
|
this.listViewHIDE.Items[j].SubItems[0].Text + "." + this.listViewHIDE.Items[j].SubItems[2].Text.ToUpper(),
|
|
this.listViewHIDE.Items[j].SubItems[3].Text
|
|
};
|
|
ListViewItem value3 = new ListViewItem(items3);
|
|
this.listViewHOL.Items.Add(value3);
|
|
}
|
|
}
|
|
this.showChart(this._dataIndex);
|
|
}
|
|
|
|
// Token: 0x060000C2 RID: 194 RVA: 0x0000EE48 File Offset: 0x0000D048
|
|
public void Hide2HolJJacValue()
|
|
{
|
|
int i;
|
|
int j;
|
|
for (i = 0; i < this.listViewHIDE.Items.Count; i = j + 1)
|
|
{
|
|
bool flag = i % 2 == 0;
|
|
if (flag)
|
|
{
|
|
this.listViewJJAC.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
this.listViewJJAC.Items[i / 2].UseItemStyleForSubItems = false;
|
|
bool flag2 = this.listViewJJAC.Items[i / 2].SubItems[1].Text != this.listViewHIDE.Items[i].SubItems[3].Text;
|
|
if (flag2)
|
|
{
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].Text = this.listViewHIDE.Items[i].SubItems[3].Text;
|
|
bool flag3 = this.listViewJJAC.Items[i / 2].SubItems[1].Text == "True";
|
|
if (flag3)
|
|
{
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].ForeColor = Color.Black;
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].BackColor = Color.LawnGreen;
|
|
this.listViewJJAC.Items[i / 2].Font = new Font("Verdana", 10f, FontStyle.Bold);
|
|
}
|
|
else
|
|
{
|
|
bool flag4 = this.listViewJJAC.Items[i / 2].SubItems[1].Text == "False";
|
|
if (flag4)
|
|
{
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].ForeColor = Color.Red;
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].Font = new Font("Verdana", 10f, FontStyle.Regular);
|
|
this.listViewJJAC.Items[i / 2].Font = new Font("Verdana", 10f, FontStyle.Regular);
|
|
}
|
|
else
|
|
{
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].ForeColor = Color.Black;
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewJJAC.Items[i / 2].SubItems[0].ForeColor = Color.Black;
|
|
this.listViewJJAC.Items[i / 2].SubItems[1].Font = new Font("Verdana", 10f, FontStyle.Regular);
|
|
}
|
|
}
|
|
}
|
|
}));
|
|
}
|
|
else
|
|
{
|
|
this.listViewHOL.Invoke(new MethodInvoker(delegate()
|
|
{
|
|
this.listViewHOL.Items[i / 2].UseItemStyleForSubItems = false;
|
|
bool flag2 = this.listViewHOL.Items[i / 2].SubItems[1].Text != this.listViewHIDE.Items[i].SubItems[3].Text;
|
|
if (flag2)
|
|
{
|
|
this.listViewHOL.Items[i / 2].SubItems[1].Text = this.listViewHIDE.Items[i].SubItems[3].Text;
|
|
bool flag3 = this.listViewHOL.Items[i / 2].SubItems[1].Text == "True";
|
|
if (flag3)
|
|
{
|
|
this.listViewHOL.Items[i / 2].SubItems[1].ForeColor = Color.Black;
|
|
this.listViewHOL.Items[i / 2].SubItems[1].BackColor = Color.LawnGreen;
|
|
this.listViewHOL.Items[i / 2].Font = new Font("Verdana", 10f, FontStyle.Bold);
|
|
}
|
|
else
|
|
{
|
|
bool flag4 = this.listViewHOL.Items[i / 2].SubItems[1].Text == "False";
|
|
if (flag4)
|
|
{
|
|
this.listViewHOL.Items[i / 2].SubItems[1].ForeColor = Color.Red;
|
|
this.listViewHOL.Items[i / 2].SubItems[1].BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewHOL.Items[i / 2].Font = new Font("Verdana", 10f, FontStyle.Regular);
|
|
}
|
|
else
|
|
{
|
|
this.listViewHOL.Items[i / 2].SubItems[1].ForeColor = Color.Black;
|
|
this.listViewHOL.Items[i / 2].SubItems[1].BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewHOL.Items[i / 2].SubItems[0].ForeColor = Color.Black;
|
|
this.listViewHOL.Items[i / 2].Font = new Font("Verdana", 10f, FontStyle.Regular);
|
|
}
|
|
}
|
|
}
|
|
}));
|
|
}
|
|
j = i;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C3 RID: 195 RVA: 0x0000EEE0 File Offset: 0x0000D0E0
|
|
private void chart1_CursorPositionChanged(object sender, CursorEventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
bool flag2 = !double.IsNaN(e.NewPosition);
|
|
if (flag2)
|
|
{
|
|
int num = this._dataIndex + (int)(e.NewPosition - (double)this._prevCursorPos);
|
|
this.showChart(num);
|
|
this.SenderEvent(num);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C4 RID: 196 RVA: 0x0000EF40 File Offset: 0x0000D140
|
|
private void chart1_AxisViewChanging(object sender, ViewEventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
double selectionStart = e.ChartArea.CursorX.SelectionStart;
|
|
double selectionEnd = e.ChartArea.CursorX.SelectionEnd;
|
|
e.NewSize = (double)this._chartSize;
|
|
e.NewPosition = e.Axis.ScaleView.Position;
|
|
bool flag2 = !double.IsNaN(selectionStart) && !double.IsNaN(selectionEnd);
|
|
if (flag2)
|
|
{
|
|
int num = this._dataIndex + (int)(selectionStart - (double)this._prevCursorPos);
|
|
int num2 = (int)Math.Abs(selectionEnd - selectionStart);
|
|
bool flag3 = num2 > 15;
|
|
if (flag3)
|
|
{
|
|
this._chartSizeStack.Push(this._chartSize);
|
|
this._chartSize = num2;
|
|
e.NewSize = (double)this._chartSize;
|
|
e.NewPosition = e.Axis.ScaleView.Position;
|
|
num += num2 >> 1;
|
|
this.Cursor = Cursors.WaitCursor;
|
|
this.SenderEvent(num);
|
|
this.Cursor = Cursors.Default;
|
|
this._dataIndex = num;
|
|
this.showChart(num);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C5 RID: 197 RVA: 0x0000F074 File Offset: 0x0000D274
|
|
private void btnZoomPrevious_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource != null;
|
|
if (flag)
|
|
{
|
|
bool flag2 = this.dataSource.Count == 0;
|
|
if (!flag2)
|
|
{
|
|
bool flag3 = this._chartSizeStack.Count == 0;
|
|
if (!flag3)
|
|
{
|
|
this._chartSize = this._chartSizeStack.Pop();
|
|
}
|
|
this.chartClear();
|
|
this.showChart(this._dataIndex);
|
|
this.Cursor = Cursors.WaitCursor;
|
|
this.Cursor = Cursors.Default;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C6 RID: 198 RVA: 0x0000F0FC File Offset: 0x0000D2FC
|
|
public void dtgCalc()
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
bool flag2 = this._dataIndex == 0;
|
|
if (!flag2)
|
|
{
|
|
int i = this._dataIndex;
|
|
double num = 0.0;
|
|
bool flag3 = false;
|
|
bool flag4 = false;
|
|
bool flag5 = false;
|
|
while (i > 0)
|
|
{
|
|
bool flag6 = this.dataSource[i].mmiData.marker == "PG1" && !flag5 && this.dataSource[i - 1].mmiData.marker == "-";
|
|
if (flag6)
|
|
{
|
|
num = this.dataSource[i].mmiData.dtg / 10.0;
|
|
flag5 = true;
|
|
break;
|
|
}
|
|
bool flag7 = this.dataSource[i].mmiData.marker == "PG3-2" && !flag3 && this.dataSource[i - 1].mmiData.marker == "-";
|
|
if (flag7)
|
|
{
|
|
num = this.dataSource[i].mmiData.dtg / 10.0;
|
|
flag3 = true;
|
|
break;
|
|
}
|
|
bool flag8 = this.dataSource[i].mmiData.marker == "PG2" && !flag4 && this.dataSource[i - 1].mmiData.marker == "-";
|
|
if (flag8)
|
|
{
|
|
num = this.dataSource[i].mmiData.dtg / 10.0;
|
|
flag4 = true;
|
|
break;
|
|
}
|
|
bool flag9 = this.dataSource[i].mmiData.trainspeed == 0.0 && this.dataSource[i].mmiData.trainno != "0000";
|
|
if (flag9)
|
|
{
|
|
num = this.dataSource[i].mmiData.dtg / 10.0;
|
|
break;
|
|
}
|
|
i--;
|
|
}
|
|
string stationName = TrackInfo.GetStationName(this.dataSource[i].mmiData.pstn);
|
|
bool flag10 = flag3;
|
|
double num2;
|
|
if (flag10)
|
|
{
|
|
num2 = 2.0;
|
|
}
|
|
else
|
|
{
|
|
bool flag11 = flag4;
|
|
if (flag11)
|
|
{
|
|
num2 = 38.0;
|
|
}
|
|
else
|
|
{
|
|
bool flag12 = flag5;
|
|
if (flag12)
|
|
{
|
|
num2 = 370.0;
|
|
}
|
|
else
|
|
{
|
|
num2 = TrackInfo.GetStationDistance(stationName, this.dataSource[i].mmiData.tc1);
|
|
}
|
|
}
|
|
}
|
|
double num3 = num2 - (this.dataSource[this._dataIndex].mmiData.dtg / 10.0 - num);
|
|
bool flag13 = this.dataSource[this._dataIndex].mmiData.dtg / 10.0 - num < 0.0;
|
|
if (flag13)
|
|
{
|
|
num3 -= 6553.5;
|
|
}
|
|
bool flag14 = num3 > 1.0;
|
|
if (flag14)
|
|
{
|
|
double num4 = this.dataSource[this._dataIndex].mmiData.trainspeed * this.dataSource[this._dataIndex].mmiData.trainspeed / (this.dataSource[this._dataIndex].mmiData.dtg * 7.2);
|
|
this.lbl_Deceleration.Text = string.Format("{0:F2}", num4);
|
|
}
|
|
else
|
|
{
|
|
this.lbl_Deceleration.Text = "-";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C7 RID: 199 RVA: 0x0000F4F0 File Offset: 0x0000D6F0
|
|
private void lblHMI_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this.selLabelName = ((Label)sender).Name;
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
this.lblClick_SerchEvent(screen, point);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000C8 RID: 200 RVA: 0x0000F560 File Offset: 0x0000D760
|
|
public void lblClick_SerchEvent(Screen screen, Point point)
|
|
{
|
|
highlowForm highlowForm = new highlowForm();
|
|
highlowForm.CloseEvent += this.HighlowForm_CloseEvent;
|
|
highlowForm.StartPosition = FormStartPosition.Manual;
|
|
Point location = screen.Bounds.Location;
|
|
location.X += point.X + 120;
|
|
location.Y += point.Y + 115;
|
|
highlowForm.Location = location;
|
|
highlowForm.ShowDialog();
|
|
}
|
|
|
|
// Token: 0x060000C9 RID: 201 RVA: 0x0000F5E0 File Offset: 0x0000D7E0
|
|
private void HighlowForm_CloseEvent(bool value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
FieldInfo[] fields = typeof(DOSItoMMIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int i = 0; i < fields.Length; i++)
|
|
{
|
|
bool flag2 = fields[i].Name == this.selLabelName.Remove(0, 7);
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this._mmi.GetType().GetField(fields[i].Name).GetValue(this._mmi).ToString() != null;
|
|
if (flag3)
|
|
{
|
|
for (int j = this._dataIndex; j < this.dataSource.Count; j++)
|
|
{
|
|
bool flag4 = this.dataSource[j].mmiData.GetType().GetField(fields[i].Name).GetValue(this.dataSource[j].mmiData).ToString() == value.ToString();
|
|
if (flag4)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(j);
|
|
this._dataIndex = j;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CA RID: 202 RVA: 0x0000F744 File Offset: 0x0000D944
|
|
private void AtcStatSelForm_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.atc_status != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.atc_status.ToString() == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CB RID: 203 RVA: 0x0000F808 File Offset: 0x0000DA08
|
|
private void lblHMI_atcStatus_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
atcStatSelForm atcStatSelForm = new atcStatSelForm();
|
|
atcStatSelForm.CloseEvent += this.AtcStatSelForm_CloseEvent;
|
|
atcStatSelForm.StartPosition = FormStartPosition.Manual;
|
|
atcStatSelForm.Location = new Point(screen.Bounds.X + point.X + 40, screen.Bounds.Y + point.Y + 105);
|
|
atcStatSelForm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CC RID: 204 RVA: 0x0000F8CC File Offset: 0x0000DACC
|
|
private void lblHMI_ATCCOD_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
atcCodeSelForm atcCodeSelForm = new atcCodeSelForm();
|
|
atcCodeSelForm.CloseEvent += this.AtcCodeSelForm_CloseEvent;
|
|
atcCodeSelForm.StartPosition = FormStartPosition.Manual;
|
|
atcCodeSelForm.Location = new Point(screen.Bounds.X + point.X + 40, screen.Bounds.Y + point.Y + 80);
|
|
atcCodeSelForm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CD RID: 205 RVA: 0x0000F990 File Offset: 0x0000DB90
|
|
private void AtcCodeSelForm_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.atc_code != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.atc_code.ToString() == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CE RID: 206 RVA: 0x0000FA54 File Offset: 0x0000DC54
|
|
private void lblHMI_marker_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
atoMarkerSelForm atoMarkerSelForm = new atoMarkerSelForm();
|
|
atoMarkerSelForm.CloseEvent += this.AtoMarkerSelForm_CloseEvent;
|
|
atoMarkerSelForm.StartPosition = FormStartPosition.Manual;
|
|
atoMarkerSelForm.Location = new Point(screen.Bounds.X + point.X + 150, screen.Bounds.Y + point.Y + 150);
|
|
atoMarkerSelForm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000CF RID: 207 RVA: 0x0000FB20 File Offset: 0x0000DD20
|
|
private void AtoMarkerSelForm_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.marker != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.marker == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D0 RID: 208 RVA: 0x0000FBE0 File Offset: 0x0000DDE0
|
|
private void lblHMI_DRMOD_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
doorModeSelForm doorModeSelForm = new doorModeSelForm();
|
|
doorModeSelForm.CloseEvent += this.doorModeSelForm_CloseEvent;
|
|
doorModeSelForm.StartPosition = FormStartPosition.Manual;
|
|
doorModeSelForm.Location = new Point(screen.Bounds.X + point.X + 60, screen.Bounds.Y + point.Y + 120);
|
|
doorModeSelForm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D1 RID: 209 RVA: 0x0000FCA4 File Offset: 0x0000DEA4
|
|
private void doorModeSelForm_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.doormod != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.doormod.ToString() == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D2 RID: 210 RVA: 0x0000FD68 File Offset: 0x0000DF68
|
|
private void lblHMI_IPDT_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
mpdtNGOK mpdtNGOK = new mpdtNGOK();
|
|
mpdtNGOK.CloseEvent += this.ipdtNGOK_CloseEvent;
|
|
mpdtNGOK.StartPosition = FormStartPosition.Manual;
|
|
mpdtNGOK.Location = new Point(screen.Bounds.X + point.X + 60, screen.Bounds.Y + point.Y + 120);
|
|
mpdtNGOK.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D3 RID: 211 RVA: 0x0000FE2C File Offset: 0x0000E02C
|
|
private void lblHMI_MPDT_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
mpdtNGOK mpdtNGOK = new mpdtNGOK();
|
|
mpdtNGOK.CloseEvent += this.pdtNGOK_CloseEvent;
|
|
mpdtNGOK.StartPosition = FormStartPosition.Manual;
|
|
mpdtNGOK.Location = new Point(screen.Bounds.X + point.X + 60, screen.Bounds.Y + point.Y + 120);
|
|
mpdtNGOK.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D4 RID: 212 RVA: 0x0000FEF0 File Offset: 0x0000E0F0
|
|
private void pdtNGOK_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.mpdt != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.mpdt.ToString() == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D5 RID: 213 RVA: 0x0000FFB4 File Offset: 0x0000E1B4
|
|
private void ipdtNGOK_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.ipdt != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.ipdt.ToString() == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D6 RID: 214 RVA: 0x00010078 File Offset: 0x0000E278
|
|
private void lblHMI_TIME_Click(object sender, EventArgs e)
|
|
{
|
|
string b = "2000.00.00 00:00:00";
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.time != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.time.ToString() == b;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D7 RID: 215 RVA: 0x00010144 File Offset: 0x0000E344
|
|
private void btnMinus_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this._chartSize < 11000;
|
|
if (flag)
|
|
{
|
|
bool flag2 = this._chartSize == 3000;
|
|
if (flag2)
|
|
{
|
|
this._chartSizeStack.Push(3000);
|
|
}
|
|
this._chartSize += 300;
|
|
this.Cursor = Cursors.WaitCursor;
|
|
this.Cursor = Cursors.Default;
|
|
this.chart1.ChartAreas[0].AxisX.MajorGrid.Interval = (double)(this._chartSize / 10);
|
|
this.showChart(this._dataIndex);
|
|
this.chart1.Series.ResumeUpdates();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D8 RID: 216 RVA: 0x00010200 File Offset: 0x0000E400
|
|
private void btnPlus_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this._chartSize > 101;
|
|
if (flag)
|
|
{
|
|
bool flag2 = this._chartSize == 3000;
|
|
if (flag2)
|
|
{
|
|
this._chartSizeStack.Push(3000);
|
|
}
|
|
this._chartSize -= 100;
|
|
bool flag3 = this._chartSize < 0;
|
|
if (!flag3)
|
|
{
|
|
this.Cursor = Cursors.WaitCursor;
|
|
this.Cursor = Cursors.Default;
|
|
this.chart1.ChartAreas[0].AxisX.MajorGrid.Interval = (double)(this._chartSize / 10);
|
|
this.showChart(this._dataIndex);
|
|
this.chart1.Series.ResumeUpdates();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000D9 RID: 217 RVA: 0x000102C4 File Offset: 0x0000E4C4
|
|
private void lblHMI_TCMSDR_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
Point mousePosition = Control.MousePosition;
|
|
Point point = base.PointToClient(new Point(Control.MousePosition.X, Control.MousePosition.Y));
|
|
Screen screen = Screen.FromPoint(Control.MousePosition);
|
|
tcmsDoorSelForm tcmsDoorSelForm = new tcmsDoorSelForm();
|
|
tcmsDoorSelForm.CloseEvent += this.tcmsDoorSelForm_CloseEvent;
|
|
tcmsDoorSelForm.StartPosition = FormStartPosition.Manual;
|
|
tcmsDoorSelForm.Location = new Point(screen.Bounds.X + point.X + 120, screen.Bounds.Y + point.Y + 120);
|
|
tcmsDoorSelForm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DA RID: 218 RVA: 0x00010388 File Offset: 0x0000E588
|
|
private void tcmsDoorSelForm_CloseEvent(string value)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.tcmsdoor != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.tcmsdoor == value;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DB RID: 219 RVA: 0x00010448 File Offset: 0x0000E648
|
|
private void mmiUI_FormClosed(object sender, FormClosedEventArgs e)
|
|
{
|
|
this.timer2.Stop();
|
|
bool flag = this.stw != null;
|
|
if (flag)
|
|
{
|
|
this.stw.Close();
|
|
this.stw.Dispose();
|
|
}
|
|
bool flag2 = this._fileStream != null;
|
|
if (flag2)
|
|
{
|
|
this._fileStream.Close();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DC RID: 220 RVA: 0x000104A4 File Offset: 0x0000E6A4
|
|
private void cb_TWCR_SelectionChangeCommitted(object sender, EventArgs e)
|
|
{
|
|
StationInfo stationInfo = this.cb_TWCR.SelectedItem as StationInfo;
|
|
bool flag = stationInfo != null;
|
|
if (flag)
|
|
{
|
|
this._dataIndex = stationInfo.LogIndex;
|
|
this.SenderEvent(this._dataIndex);
|
|
this.showChart(this._dataIndex);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DD RID: 221 RVA: 0x000104F8 File Offset: 0x0000E6F8
|
|
private void label22_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.atc_err_msg != "" || this.dataSource[i].mmiData.ato_err_msg != "" || this.dataSource[i].mmiData.diagnostic_err_msg != "" || this.dataSource[i].mmiData.interface_err_msg != "";
|
|
if (flag2)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DE RID: 222 RVA: 0x00010608 File Offset: 0x0000E808
|
|
public void clearLabelMMIUI()
|
|
{
|
|
foreach (object obj in this.groupBoxStatus.Controls)
|
|
{
|
|
bool flag = obj is GroupBox;
|
|
if (flag)
|
|
{
|
|
GroupBox groupBox = (GroupBox)obj;
|
|
foreach (object obj2 in groupBox.Controls)
|
|
{
|
|
bool flag2 = ((Label)obj2).BackColor == Color.LawnGreen;
|
|
if (flag2)
|
|
{
|
|
this.lblColorChanger((Label)obj2, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000DF RID: 223 RVA: 0x000106F4 File Offset: 0x0000E8F4
|
|
public void zVcalc()
|
|
{
|
|
int num = 0;
|
|
StationInfo stationInfo = this.cb_TWCR.Items[this.cb_TWCR.Items.Count - 1] as StationInfo;
|
|
this.valueFinder(this.lblHMI_ato_start_btn, true);
|
|
for (int i = this._dataIndex; i < stationInfo.LogIndex; i++)
|
|
{
|
|
bool flag = this.dataSource[i].mmiData.trainspeed == 0.0;
|
|
if (flag)
|
|
{
|
|
num++;
|
|
}
|
|
}
|
|
MessageBox.Show(string.Concat(new string[]
|
|
{
|
|
"계산된 정차 시간:",
|
|
(num / 300).ToString(),
|
|
"분",
|
|
(num % 300 / 5).ToString(),
|
|
"초"
|
|
}), " 결과 ");
|
|
}
|
|
|
|
// Token: 0x060000E0 RID: 224 RVA: 0x000107D8 File Offset: 0x0000E9D8
|
|
public void stopPositionWriter(List<MergedData> datas, int idx)
|
|
{
|
|
bool flag = datas.Count == 0;
|
|
if (flag)
|
|
{
|
|
MessageBox.Show("아이템을 추가 한 후 엑셀데이터 버튼을 클릭해주세요.");
|
|
}
|
|
else
|
|
{
|
|
DateTime now = DateTime.Now;
|
|
string path = System.Windows.Forms.Application.StartupPath + "\\Pg\\" + now.ToString("yyyyMMdd");
|
|
string filename = string.Format(now.ToString("MMddHHmmss") + ".csv", Array.Empty<object>());
|
|
bool flag2 = !Directory.Exists(path);
|
|
if (flag2)
|
|
{
|
|
Directory.CreateDirectory(path);
|
|
}
|
|
try
|
|
{
|
|
object missing = Type.Missing;
|
|
Microsoft.Office.Interop.Excel.Application application = (Microsoft.Office.Interop.Excel.Application)Activator.CreateInstance(Marshal.GetTypeFromCLSID(new Guid("00024500-0000-0000-C000-000000000046")));
|
|
Workbook workbook = application.Workbooks.Add(missing);
|
|
if (mmiUI.<>o__119.<>p__0 == null)
|
|
{
|
|
mmiUI.<>o__119.<>p__0 = CallSite<Func<CallSite, object, Worksheet>>.Create(Microsoft.CSharp.RuntimeBinder.Binder.Convert(CSharpBinderFlags.ConvertExplicit, typeof(Worksheet), typeof(mmiUI)));
|
|
}
|
|
Worksheet worksheet = mmiUI.<>o__119.<>p__0.Target(mmiUI.<>o__119.<>p__0, workbook.Worksheets.Add(missing, missing, missing, missing));
|
|
application.Visible = false;
|
|
bool flag3 = idx < this._chartSize / 2;
|
|
if (flag3)
|
|
{
|
|
idx = this._chartSize / 2 + 1;
|
|
}
|
|
for (int i = 0; i < this.listViewHIDE.Items.Count; i++)
|
|
{
|
|
worksheet.Cells[1, i + 1] = this.listViewHIDE.Items[i].SubItems[2].Text.ToString();
|
|
}
|
|
for (int j = 1; j < this._chartSize; j++)
|
|
{
|
|
for (int k = 0; k < this.listViewHIDE.Items.Count; k++)
|
|
{
|
|
FieldInfo[] fields = typeof(DOSItoMMIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
worksheet.Cells[j + 1, k + 1] = datas[idx - this._chartSize / 2].mmiData.GetType().GetField(this.listViewHIDE.Items[k].SubItems[2].Text.ToLower()).GetValue(datas[idx - this._chartSize / 2 + j].mmiData).ToString();
|
|
}
|
|
}
|
|
workbook.SaveAs(filename, XlFileFormat.xlWorkbookNormal, missing, missing, missing, missing, XlSaveAsAccessMode.xlNoChange, missing, missing, missing, missing, missing);
|
|
application.Visible = true;
|
|
Marshal.ReleaseComObject(application);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show("Excel 파일 저장 중 에러가 발생했습니다: " + ex.Message);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E1 RID: 225 RVA: 0x00010AD8 File Offset: 0x0000ECD8
|
|
private static DateTime Delay(int MS)
|
|
{
|
|
DateTime now = DateTime.Now;
|
|
TimeSpan value = new TimeSpan(0, 0, 0, 0, MS);
|
|
DateTime t = now.Add(value);
|
|
while (t >= now)
|
|
{
|
|
System.Windows.Forms.Application.DoEvents();
|
|
now = DateTime.Now;
|
|
}
|
|
return DateTime.Now;
|
|
}
|
|
|
|
// Token: 0x060000E2 RID: 226 RVA: 0x00010B28 File Offset: 0x0000ED28
|
|
private bool valueFinder(Label label, bool value)
|
|
{
|
|
this._dataIndex++;
|
|
FieldInfo[] fields = typeof(DOSItoMMIClass).GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
for (int i = 0; i < fields.Length; i++)
|
|
{
|
|
bool flag = fields[i].Name == label.Name.Remove(0, 7);
|
|
if (flag)
|
|
{
|
|
bool flag2 = this._mmi.GetType().GetField(fields[i].Name).GetValue(this._mmi).ToString() != null;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource != null;
|
|
if (flag3)
|
|
{
|
|
for (int j = this._dataIndex; j < this.dataSource.Count; j++)
|
|
{
|
|
bool flag4 = this.dataSource[j].mmiData.GetType().GetField(fields[i].Name).GetValue(this.dataSource[j].mmiData).ToString() == value.ToString();
|
|
if (flag4)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(j);
|
|
this._dataIndex = j;
|
|
this.SenderEvent(this._dataIndex);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// Token: 0x060000E3 RID: 227 RVA: 0x00010C94 File Offset: 0x0000EE94
|
|
private void lbl123_Click(object sender, EventArgs e)
|
|
{
|
|
this.startPt = (int)this._mmi.dtg;
|
|
this.pg1dt = false;
|
|
this.pg2dt = false;
|
|
this.pg3dt = false;
|
|
this.wrpg3 = false;
|
|
this.lblHMI_PG1DIST.Text = "--";
|
|
this.lblHMI_PG2DIST.Text = "--";
|
|
this.lblHMI_PG32DIST.Text = "--";
|
|
}
|
|
|
|
// Token: 0x060000E4 RID: 228 RVA: 0x00010D04 File Offset: 0x0000EF04
|
|
private void label23_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.trainno != this.dataSource[i - 1].mmiData.trainno;
|
|
if (flag2)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E5 RID: 229 RVA: 0x00010DB8 File Offset: 0x0000EFB8
|
|
public void ReSetFontSize(Control.ControlCollection ctrls)
|
|
{
|
|
float num = 1f;
|
|
using (RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop\\WindowMetrics"))
|
|
{
|
|
bool flag = registryKey != null;
|
|
if (flag)
|
|
{
|
|
object value = registryKey.GetValue("AppliedDPI");
|
|
bool flag2 = value != null;
|
|
if (flag2)
|
|
{
|
|
int num2 = (int)value;
|
|
num = (float)num2 / 96f;
|
|
}
|
|
}
|
|
}
|
|
bool flag3 = (double)num == 1.25;
|
|
if (flag3)
|
|
{
|
|
this.SetAllControlsFontSize(base.Controls, 1.27f);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E6 RID: 230 RVA: 0x00010E58 File Offset: 0x0000F058
|
|
private void SetAllControlsFontSize(Control.ControlCollection ctrls, float scale)
|
|
{
|
|
foreach (object obj in ctrls)
|
|
{
|
|
Control control = (Control)obj;
|
|
bool flag = control.Controls != null;
|
|
if (flag)
|
|
{
|
|
this.SetAllControlsFontSize(control.Controls, scale);
|
|
}
|
|
bool flag2 = control != null;
|
|
if (flag2)
|
|
{
|
|
Font font = control.Font;
|
|
control.Font = new Font(font.Name, font.Size / scale);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E7 RID: 231 RVA: 0x00010EF8 File Offset: 0x0000F0F8
|
|
private void aquaGauge1_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
MessageBox.Show("감속도 : " + ((this.dataSource[this._dataIndex - this._chartSize / 2].mmiData.trainspeed - this.dataSource[this._dataIndex + this._chartSize / 2].mmiData.trainspeed) / (double)(this._chartSize / 5)).ToString(), " 알림 " + ((double)this._chartSize / 5.0).ToString() + "초");
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E8 RID: 232 RVA: 0x00010FAC File Offset: 0x0000F1AC
|
|
private void labelDTG_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.trainberth && this.dataSource[i].mmiData.trainspeed == 0.0 && this.dataSource[i].mmiData.trainno != "0000";
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.pstn != this.dataSource[this._dataIndex].mmiData.pstn;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
i += 20;
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000E9 RID: 233 RVA: 0x000110CF File Offset: 0x0000F2CF
|
|
private void aquaGauge1_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060000EA RID: 234 RVA: 0x000110D2 File Offset: 0x0000F2D2
|
|
private void lbl_MOUSEMOVE(object sender, MouseEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060000EB RID: 235 RVA: 0x000110D8 File Offset: 0x0000F2D8
|
|
private void label_nextDoor_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count - 1; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.nextdoor != this.dataSource[i + 1].mmiData.nextdoor;
|
|
if (flag2)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i + 1);
|
|
this._dataIndex = i + 1;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000EC RID: 236 RVA: 0x0001118F File Offset: 0x0000F38F
|
|
private void metroCheckBox_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
this.showChart(this._dataIndex);
|
|
}
|
|
|
|
// Token: 0x060000ED RID: 237 RVA: 0x000111A0 File Offset: 0x0000F3A0
|
|
private void lblHMI_movedistatnce_Click(object sender, EventArgs e)
|
|
{
|
|
bool flag = this.dataSource == null;
|
|
if (!flag)
|
|
{
|
|
this._dataIndex++;
|
|
for (int i = this._dataIndex; i < this.dataSource.Count; i++)
|
|
{
|
|
bool flag2 = this.dataSource[i].mmiData.limitspeed == 0U && this.dataSource[i].mmiData.trainspeed > 0.0;
|
|
if (flag2)
|
|
{
|
|
bool flag3 = this.dataSource[i].mmiData.pstn != this.dataSource[this._dataIndex].mmiData.pstn;
|
|
if (flag3)
|
|
{
|
|
this.chartClear();
|
|
this.showChart(i);
|
|
this._dataIndex = i;
|
|
this.SenderEvent(this._dataIndex);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x060000EE RID: 238 RVA: 0x000112A0 File Offset: 0x0000F4A0
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
bool flag = disposing && this.components != null;
|
|
if (flag)
|
|
{
|
|
this.components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
// Token: 0x060000EF RID: 239 RVA: 0x000112D8 File Offset: 0x0000F4D8
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new Container();
|
|
ChartArea chartArea = new ChartArea();
|
|
Legend legend = new Legend();
|
|
Series series = new Series();
|
|
Series series2 = new Series();
|
|
Series series3 = new Series();
|
|
Series series4 = new Series();
|
|
Series series5 = new Series();
|
|
this.lblHMI_inching = new Label();
|
|
this.lblHMI_DRMOD = new Label();
|
|
this.label2 = new Label();
|
|
this.label16 = new Label();
|
|
this.label15 = new Label();
|
|
this.label27 = new Label();
|
|
this.lblHMI_IPDT = new Label();
|
|
this.lblHMI_MPDT = new Label();
|
|
this.lblHMI_over_spd_warning = new Label();
|
|
this.lblHMI_recovery = new Label();
|
|
this.lblHMI_nomal = new Label();
|
|
this.label14 = new Label();
|
|
this.lblHMI_tasc = new Label();
|
|
this.label13 = new Label();
|
|
this.lblHMI_wheelcheck = new Label();
|
|
this.lblHMI_TCMSDR = new Label();
|
|
this.lblHMI_trac_cs = new Label();
|
|
this.lblHMI_WHD1 = new Label();
|
|
this.lblHMI_WHD2 = new Label();
|
|
this.lblHMI_kur = new Label();
|
|
this.lblHMI_trac_dr = new Label();
|
|
this.lblHMI_trac_br = new Label();
|
|
this.label23 = new Label();
|
|
this.lblHMI_TRNNO = new Label();
|
|
this.chart1 = new Chart();
|
|
this.listViewJJAC = new ListView();
|
|
this.columnHeader1 = new ColumnHeader();
|
|
this.columnHeader2 = new ColumnHeader();
|
|
this.listViewHOL = new ListView();
|
|
this.columnHeader3 = new ColumnHeader();
|
|
this.columnHeader4 = new ColumnHeader();
|
|
this.listViewHIDE = new ListView();
|
|
this.columnHeader5 = new ColumnHeader();
|
|
this.columnHeader6 = new ColumnHeader();
|
|
this.columnHeader7 = new ColumnHeader();
|
|
this.columnHeader8 = new ColumnHeader();
|
|
this.timer2 = new Timer(this.components);
|
|
this.lblHMI_system_active = new Label();
|
|
this.aquaGauge1 = new AquaGauge();
|
|
this.LVHMI_ERRMESS = new ListView();
|
|
this.TYPE = new ColumnHeader();
|
|
this.ERROR_MESSAGE = new ColumnHeader();
|
|
this.label22 = new Label();
|
|
this.lblHMI_osc = new Label();
|
|
this.gb_ATC = new GroupBox();
|
|
this.label9 = new Label();
|
|
this.label8 = new Label();
|
|
this.label5 = new Label();
|
|
this.label4 = new Label();
|
|
this.label3 = new Label();
|
|
this.lblHMI_ATClimitSPD = new Label();
|
|
this.lblHMI_tc2 = new Label();
|
|
this.lblHMI_tc1 = new Label();
|
|
this.lblHMI_ATC_CARRIERF = new Label();
|
|
this.lblHMI_ATC_CODEF = new Label();
|
|
this.lblHMI_ATC_CODE_CARRIERF = new Label();
|
|
this.lblHMI_ATCCOD = new Label();
|
|
this.lblHMI_atcStatus = new Label();
|
|
this.label1 = new Label();
|
|
this.lblHMI_SWver = new Label();
|
|
this.gb_ATO = new GroupBox();
|
|
this.lblHMI_ato_eb_req = new Label();
|
|
this.lblHMI_tascdb = new Label();
|
|
this.oscLABEL = new Label();
|
|
this.lblHMI_liveOSCf = new Label();
|
|
this.lblHMI_osc_f0_ok = new Label();
|
|
this.label26 = new Label();
|
|
this.lblHMI_marker = new Label();
|
|
this.label28 = new Label();
|
|
this.lblHMI_pwm = new Label();
|
|
this.labelDTG = new Label();
|
|
this.lblHMI_movedistatnce = new Label();
|
|
this.label29 = new Label();
|
|
this.lblHMI_ATOlimitSPD = new Label();
|
|
this.label21 = new Label();
|
|
this.lblHMI_ATOCSWver = new Label();
|
|
this.lblHMI_ato_start_btn = new Label();
|
|
this.gb_TWC = new GroupBox();
|
|
this.lblHMI_trainberth = new Label();
|
|
this.lblHMI_wrongdoor = new Label();
|
|
this.label7 = new Label();
|
|
this.lblHMI_PSTN = new Label();
|
|
this.label18 = new Label();
|
|
this.lblHMI_door_close_warning = new Label();
|
|
this.lblHMI_NSTN = new Label();
|
|
this.lblHMI_NEXTDR = new Label();
|
|
this.label19 = new Label();
|
|
this.label_nextDoor = new Label();
|
|
this.lblHMI_LSTN = new Label();
|
|
this.lblHMI_twct_en = new Label();
|
|
this.lblHMI_adol = new Label();
|
|
this.groupBox2 = new GroupBox();
|
|
this.lblHMI_fail_atcr = new Label();
|
|
this.lblHMI_fail_atoc = new Label();
|
|
this.lblHMI_fail_tcms = new Label();
|
|
this.lblHMI_fail_tacho1 = new Label();
|
|
this.lblHMI_fail_tacho2 = new Label();
|
|
this.groupBox1 = new GroupBox();
|
|
this.lblHMI_fa = new Label();
|
|
this.lblHMI_mascon_dr = new Label();
|
|
this.lblHMI_fmc = new Label();
|
|
this.lblHMI_mascon_br = new Label();
|
|
this.lblHMI_hcr = new Label();
|
|
this.lblHMI_yard = new Label();
|
|
this.lblHMI_mascon_eb = new Label();
|
|
this.lblHMI_tcr = new Label();
|
|
this.lblHMI_auto = new Label();
|
|
this.lblHMI_mcs = new Label();
|
|
this.lblHMI_door_open = new Label();
|
|
this.lblHMI_door_close = new Label();
|
|
this.lblHMI_reversingrod_fwd = new Label();
|
|
this.lblHMI_reversingrod_neu = new Label();
|
|
this.lblHMI_reversingrod_rvs = new Label();
|
|
this.lblHMI_psd_open = new Label();
|
|
this.lblHMI_psd_close = new Label();
|
|
this.lblHMI_ador = new Label();
|
|
this.lblHMI_TIME = new Label();
|
|
this.groupBox4 = new GroupBox();
|
|
this.lblHMI_do_ebp = new Label();
|
|
this.lblHMI_do_zvr = new Label();
|
|
this.lblHMI_do_fsb = new Label();
|
|
this.lblHMI_do_ebm = new Label();
|
|
this.lblHMI_do_edl = new Label();
|
|
this.lblHMI_do_edr = new Label();
|
|
this.lblHMI_adc = new Label();
|
|
this.groupBoxStatus = new GroupBox();
|
|
this.groupBox5 = new GroupBox();
|
|
this.lblHMI_start_enable = new Label();
|
|
this.lblHMI_sel = new Label();
|
|
this.groupBox6 = new GroupBox();
|
|
this.lblHMI_tacho_dir_a = new Label();
|
|
this.lblHMI_tacho_dir_b = new Label();
|
|
this.lblHMI_sh_stop2 = new Label();
|
|
this.lblHMI_ov_stop2 = new Label();
|
|
this.lblHMI_limit_drive = new Label();
|
|
this.lblHMI_pre_brake = new Label();
|
|
this.lblHMI_sh_stop1 = new Label();
|
|
this.lblHMI_ov_stop1 = new Label();
|
|
this.lblpg32d = new Label();
|
|
this.lblHMI_PG32DIST = new Label();
|
|
this.lblpg2d = new Label();
|
|
this.lblHMI_PG2DIST = new Label();
|
|
this.lblpg1d = new Label();
|
|
this.lblHMI_PG1DIST = new Label();
|
|
this.labelName_gagam = new Label();
|
|
this.lbl_Deceleration = new Label();
|
|
this.btnPlus = new Button();
|
|
this.btnMinus = new Button();
|
|
this.btnZoomPrevious = new Button();
|
|
this.cb_TWCR = new ComboBox();
|
|
this.toolTip1 = new ToolTip(this.components);
|
|
this.groupBox3 = new GroupBox();
|
|
this.lb_VDIA_rvs = new Label();
|
|
this.lb_VDIA_neu = new Label();
|
|
this.lb_VDIA_fwd = new Label();
|
|
this.lb_VDIA_mascondr = new Label();
|
|
this.lb_VDIA_masconbr = new Label();
|
|
this.lb_VDIA_masconeb = new Label();
|
|
this.lb_VDIA_doorclose = new Label();
|
|
this.lb_VDIA_dooropen = new Label();
|
|
this.label24 = new Label();
|
|
this.lb_VDIA_fmc = new Label();
|
|
this.lb_VDIA_yard = new Label();
|
|
this.lb_VDIA_mcs = new Label();
|
|
this.lb_VDIA_auto = new Label();
|
|
this.lb_VDIA_fa = new Label();
|
|
this.lb_VDIA_tcr = new Label();
|
|
this.lb_VDIA_hcr = new Label();
|
|
this.panel_cVDIO = new Panel();
|
|
this.groupBox12 = new GroupBox();
|
|
this.label89 = new Label();
|
|
this.label90 = new Label();
|
|
this.lb_VDOB_edl = new Label();
|
|
this.lb_VDOB_edr = new Label();
|
|
this.lb_VDOB_zvr = new Label();
|
|
this.lb_VDOB_fsb = new Label();
|
|
this.lb_VDOB_ebm = new Label();
|
|
this.lb_VDOB_ebp = new Label();
|
|
this.groupBox11 = new GroupBox();
|
|
this.label97 = new Label();
|
|
this.label98 = new Label();
|
|
this.lb_VDOA_edl = new Label();
|
|
this.lb_VDOA_edr = new Label();
|
|
this.lb_VDOA_zvr = new Label();
|
|
this.lb_VDOA_fsb = new Label();
|
|
this.lb_VDOA_ebm = new Label();
|
|
this.lb_VDOA_ebp = new Label();
|
|
this.groupBox10 = new GroupBox();
|
|
this.lb_VDID_tc2 = new Label();
|
|
this.lb_VDID_tc1 = new Label();
|
|
this.lb_VDID_edlfb = new Label();
|
|
this.lb_VDID_edrfb = new Label();
|
|
this.lb_VDID_zvrfb = new Label();
|
|
this.lb_VDID_fsbfb = new Label();
|
|
this.lb_VDID_ebmfb = new Label();
|
|
this.lb_VDID_ebpfb = new Label();
|
|
this.lb_VDID_unit1 = new Label();
|
|
this.label82 = new Label();
|
|
this.label83 = new Label();
|
|
this.label84 = new Label();
|
|
this.label85 = new Label();
|
|
this.lb_VDID_startbtn = new Label();
|
|
this.lb_VDID_psdclose = new Label();
|
|
this.lb_VDID_psdopen = new Label();
|
|
this.groupBox9 = new GroupBox();
|
|
this.lb_VDIC_tc2 = new Label();
|
|
this.lb_VDIC_tc1 = new Label();
|
|
this.lb_VDIC_edlfb = new Label();
|
|
this.lb_VDIC_edrfb = new Label();
|
|
this.lb_VDIC_zvrfb = new Label();
|
|
this.lb_VDIC_fsbfb = new Label();
|
|
this.lb_VDIC_ebmfb = new Label();
|
|
this.lb_VDIC_ebpfb = new Label();
|
|
this.lb_VDIC_unit1 = new Label();
|
|
this.label66 = new Label();
|
|
this.label67 = new Label();
|
|
this.label68 = new Label();
|
|
this.label69 = new Label();
|
|
this.lb_VDIC_startbtn = new Label();
|
|
this.lb_VDIC_psdclose = new Label();
|
|
this.lb_VDIC_psdopen = new Label();
|
|
this.groupBox7 = new GroupBox();
|
|
this.lb_VDIB_rvs = new Label();
|
|
this.lb_VDIB_neu = new Label();
|
|
this.lb_VDIB_fwd = new Label();
|
|
this.lb_VDIB_mascondr = new Label();
|
|
this.lb_VDIB_masconbr = new Label();
|
|
this.lb_VDIB_masconeb = new Label();
|
|
this.lb_VDIB_doorclose = new Label();
|
|
this.lb_VDIB_dooropen = new Label();
|
|
this.label49 = new Label();
|
|
this.lb_VDIB_fmc = new Label();
|
|
this.lb_VDIB_yard = new Label();
|
|
this.lb_VDIB_mcs = new Label();
|
|
this.lb_VDIB_auto = new Label();
|
|
this.lb_VDIB_fa = new Label();
|
|
this.lb_VDIB_tcr = new Label();
|
|
this.lb_VDIB_hcr = new Label();
|
|
this.metroCheckBox_pwm = new MetroCheckBox();
|
|
this.metroCheckBox_tasc = new MetroCheckBox();
|
|
this.metroCheckBox_speed = new MetroCheckBox();
|
|
this.metroCheckBox_atc = new MetroCheckBox();
|
|
((ISupportInitialize)this.chart1).BeginInit();
|
|
this.gb_ATC.SuspendLayout();
|
|
this.gb_ATO.SuspendLayout();
|
|
this.gb_TWC.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.groupBox4.SuspendLayout();
|
|
this.groupBoxStatus.SuspendLayout();
|
|
this.groupBox5.SuspendLayout();
|
|
this.groupBox6.SuspendLayout();
|
|
this.groupBox3.SuspendLayout();
|
|
this.panel_cVDIO.SuspendLayout();
|
|
this.groupBox12.SuspendLayout();
|
|
this.groupBox11.SuspendLayout();
|
|
this.groupBox10.SuspendLayout();
|
|
this.groupBox9.SuspendLayout();
|
|
this.groupBox7.SuspendLayout();
|
|
base.SuspendLayout();
|
|
this.lblHMI_inching.BackColor = Color.DarkGray;
|
|
this.lblHMI_inching.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_inching.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_inching.ForeColor = Color.White;
|
|
this.lblHMI_inching.Location = new Point(480, 30);
|
|
this.lblHMI_inching.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_inching.Name = "lblHMI_inching";
|
|
this.lblHMI_inching.Size = new Size(60, 28);
|
|
this.lblHMI_inching.TabIndex = 182;
|
|
this.lblHMI_inching.Text = "IN-\r\nCHING";
|
|
this.lblHMI_inching.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_inching.Click += this.lblHMI_Click;
|
|
this.lblHMI_inching.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_DRMOD.BackColor = Color.DarkBlue;
|
|
this.lblHMI_DRMOD.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_DRMOD.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_DRMOD.ForeColor = Color.White;
|
|
this.lblHMI_DRMOD.Location = new Point(357, 60);
|
|
this.lblHMI_DRMOD.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_DRMOD.Name = "lblHMI_DRMOD";
|
|
this.lblHMI_DRMOD.Size = new Size(57, 28);
|
|
this.lblHMI_DRMOD.TabIndex = 164;
|
|
this.lblHMI_DRMOD.Text = "-";
|
|
this.lblHMI_DRMOD.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_DRMOD.Click += this.lblHMI_DRMOD_Click;
|
|
this.label2.BackColor = Color.DodgerBlue;
|
|
this.label2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label2.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label2.ForeColor = Color.WhiteSmoke;
|
|
this.label2.Location = new Point(357, 30);
|
|
this.label2.Margin = new Padding(2, 0, 2, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new Size(57, 28);
|
|
this.label2.TabIndex = 251;
|
|
this.label2.Text = "Door\r\nMODE";
|
|
this.label2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label2.Click += this.lblHMI_DRMOD_Click;
|
|
this.label16.BackColor = Color.DodgerBlue;
|
|
this.label16.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label16.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label16.ForeColor = Color.WhiteSmoke;
|
|
this.label16.Location = new Point(9, 30);
|
|
this.label16.Margin = new Padding(2, 0, 2, 0);
|
|
this.label16.Name = "label16";
|
|
this.label16.Size = new Size(57, 28);
|
|
this.label16.TabIndex = 263;
|
|
this.label16.Text = "INITIAL\r\nPDT";
|
|
this.label16.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label16.Click += this.lblHMI_IPDT_Click;
|
|
this.label15.BackColor = Color.DodgerBlue;
|
|
this.label15.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label15.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label15.ForeColor = Color.WhiteSmoke;
|
|
this.label15.Location = new Point(67, 30);
|
|
this.label15.Margin = new Padding(2, 0, 2, 0);
|
|
this.label15.Name = "label15";
|
|
this.label15.Size = new Size(57, 28);
|
|
this.label15.TabIndex = 262;
|
|
this.label15.Text = "MANUAL\r\nPDT";
|
|
this.label15.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label15.Click += this.lblHMI_MPDT_Click;
|
|
this.label27.BackColor = Color.DodgerBlue;
|
|
this.label27.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label27.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label27.ForeColor = Color.WhiteSmoke;
|
|
this.label27.Location = new Point(125, 30);
|
|
this.label27.Margin = new Padding(2, 0, 2, 0);
|
|
this.label27.Name = "label27";
|
|
this.label27.Size = new Size(57, 28);
|
|
this.label27.TabIndex = 272;
|
|
this.label27.Text = "TCMS\r\nDoor";
|
|
this.label27.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label27.Click += this.lblHMI_TCMSDR_Click;
|
|
this.lblHMI_IPDT.BackColor = Color.DarkBlue;
|
|
this.lblHMI_IPDT.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_IPDT.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_IPDT.ForeColor = Color.White;
|
|
this.lblHMI_IPDT.Location = new Point(9, 60);
|
|
this.lblHMI_IPDT.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_IPDT.Name = "lblHMI_IPDT";
|
|
this.lblHMI_IPDT.Size = new Size(57, 28);
|
|
this.lblHMI_IPDT.TabIndex = 155;
|
|
this.lblHMI_IPDT.Text = "-";
|
|
this.lblHMI_IPDT.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_IPDT.Click += this.lblHMI_IPDT_Click;
|
|
this.lblHMI_MPDT.BackColor = Color.DarkBlue;
|
|
this.lblHMI_MPDT.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_MPDT.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_MPDT.ForeColor = Color.White;
|
|
this.lblHMI_MPDT.Location = new Point(67, 60);
|
|
this.lblHMI_MPDT.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_MPDT.Name = "lblHMI_MPDT";
|
|
this.lblHMI_MPDT.Size = new Size(57, 28);
|
|
this.lblHMI_MPDT.TabIndex = 153;
|
|
this.lblHMI_MPDT.Text = "-";
|
|
this.lblHMI_MPDT.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_MPDT.Click += this.lblHMI_MPDT_Click;
|
|
this.lblHMI_over_spd_warning.BackColor = Color.DarkGray;
|
|
this.lblHMI_over_spd_warning.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_over_spd_warning.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_over_spd_warning.ForeColor = Color.White;
|
|
this.lblHMI_over_spd_warning.Location = new Point(728, 30);
|
|
this.lblHMI_over_spd_warning.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_over_spd_warning.Name = "lblHMI_over_spd_warning";
|
|
this.lblHMI_over_spd_warning.Size = new Size(60, 28);
|
|
this.lblHMI_over_spd_warning.TabIndex = 143;
|
|
this.lblHMI_over_spd_warning.Text = "OvrSPD\r\nWaring";
|
|
this.lblHMI_over_spd_warning.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_over_spd_warning.Click += this.lblHMI_Click;
|
|
this.lblHMI_over_spd_warning.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_recovery.BackColor = Color.DarkGray;
|
|
this.lblHMI_recovery.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_recovery.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_recovery.ForeColor = Color.White;
|
|
this.lblHMI_recovery.Location = new Point(666, 30);
|
|
this.lblHMI_recovery.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_recovery.Name = "lblHMI_recovery";
|
|
this.lblHMI_recovery.Size = new Size(60, 28);
|
|
this.lblHMI_recovery.TabIndex = 241;
|
|
this.lblHMI_recovery.Text = "회복모드";
|
|
this.lblHMI_recovery.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_recovery.Click += this.lblHMI_Click;
|
|
this.lblHMI_recovery.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_nomal.BackColor = Color.DarkGray;
|
|
this.lblHMI_nomal.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_nomal.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_nomal.ForeColor = Color.White;
|
|
this.lblHMI_nomal.Location = new Point(604, 30);
|
|
this.lblHMI_nomal.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_nomal.Name = "lblHMI_nomal";
|
|
this.lblHMI_nomal.Size = new Size(60, 28);
|
|
this.lblHMI_nomal.TabIndex = 242;
|
|
this.lblHMI_nomal.Text = "평상모드";
|
|
this.lblHMI_nomal.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_nomal.Click += this.lblHMI_Click;
|
|
this.lblHMI_nomal.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.label14.BackColor = Color.DodgerBlue;
|
|
this.label14.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label14.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label14.ForeColor = Color.WhiteSmoke;
|
|
this.label14.Location = new Point(241, 30);
|
|
this.label14.Margin = new Padding(2, 0, 2, 0);
|
|
this.label14.Name = "label14";
|
|
this.label14.Size = new Size(57, 28);
|
|
this.label14.TabIndex = 261;
|
|
this.label14.Text = "DIA2\r\nACK";
|
|
this.label14.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tasc.BackColor = Color.DarkGray;
|
|
this.lblHMI_tasc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tasc.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tasc.ForeColor = Color.White;
|
|
this.lblHMI_tasc.Location = new Point(249, 20);
|
|
this.lblHMI_tasc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tasc.Name = "lblHMI_tasc";
|
|
this.lblHMI_tasc.Size = new Size(57, 28);
|
|
this.lblHMI_tasc.TabIndex = 243;
|
|
this.lblHMI_tasc.Text = "TASC";
|
|
this.lblHMI_tasc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tasc.Click += this.lblHMI_Click;
|
|
this.lblHMI_tasc.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.label13.BackColor = Color.DodgerBlue;
|
|
this.label13.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label13.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label13.ForeColor = Color.WhiteSmoke;
|
|
this.label13.Location = new Point(183, 30);
|
|
this.label13.Margin = new Padding(2, 0, 2, 0);
|
|
this.label13.Name = "label13";
|
|
this.label13.Size = new Size(57, 28);
|
|
this.label13.TabIndex = 260;
|
|
this.label13.Text = "DIA1\r\nACK";
|
|
this.label13.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_wheelcheck.BackColor = Color.DarkGray;
|
|
this.lblHMI_wheelcheck.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_wheelcheck.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_wheelcheck.ForeColor = Color.White;
|
|
this.lblHMI_wheelcheck.Location = new Point(776, 539);
|
|
this.lblHMI_wheelcheck.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_wheelcheck.Name = "lblHMI_wheelcheck";
|
|
this.lblHMI_wheelcheck.Size = new Size(57, 28);
|
|
this.lblHMI_wheelcheck.TabIndex = 152;
|
|
this.lblHMI_wheelcheck.Text = "Wheel\r\nCHECK";
|
|
this.lblHMI_wheelcheck.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_wheelcheck.Click += this.lblHMI_Click;
|
|
this.lblHMI_TCMSDR.BackColor = Color.DarkBlue;
|
|
this.lblHMI_TCMSDR.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_TCMSDR.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_TCMSDR.ForeColor = Color.White;
|
|
this.lblHMI_TCMSDR.Location = new Point(125, 60);
|
|
this.lblHMI_TCMSDR.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_TCMSDR.Name = "lblHMI_TCMSDR";
|
|
this.lblHMI_TCMSDR.Size = new Size(57, 28);
|
|
this.lblHMI_TCMSDR.TabIndex = 162;
|
|
this.lblHMI_TCMSDR.Text = "-";
|
|
this.lblHMI_TCMSDR.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_TCMSDR.Click += this.lblHMI_TCMSDR_Click;
|
|
this.lblHMI_trac_cs.BackColor = Color.DarkGray;
|
|
this.lblHMI_trac_cs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_trac_cs.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_trac_cs.ForeColor = Color.White;
|
|
this.lblHMI_trac_cs.Location = new Point(542, 30);
|
|
this.lblHMI_trac_cs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_trac_cs.Name = "lblHMI_trac_cs";
|
|
this.lblHMI_trac_cs.Size = new Size(60, 28);
|
|
this.lblHMI_trac_cs.TabIndex = 118;
|
|
this.lblHMI_trac_cs.Text = "CS";
|
|
this.lblHMI_trac_cs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_trac_cs.Click += this.lblHMI_Click;
|
|
this.lblHMI_trac_cs.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_WHD1.BackColor = Color.DarkBlue;
|
|
this.lblHMI_WHD1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_WHD1.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_WHD1.ForeColor = Color.White;
|
|
this.lblHMI_WHD1.Location = new Point(183, 60);
|
|
this.lblHMI_WHD1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_WHD1.Name = "lblHMI_WHD1";
|
|
this.lblHMI_WHD1.Size = new Size(57, 28);
|
|
this.lblHMI_WHD1.TabIndex = 132;
|
|
this.lblHMI_WHD1.Text = "-";
|
|
this.lblHMI_WHD1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_WHD2.BackColor = Color.DarkBlue;
|
|
this.lblHMI_WHD2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_WHD2.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_WHD2.ForeColor = Color.White;
|
|
this.lblHMI_WHD2.Location = new Point(241, 60);
|
|
this.lblHMI_WHD2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_WHD2.Name = "lblHMI_WHD2";
|
|
this.lblHMI_WHD2.Size = new Size(57, 28);
|
|
this.lblHMI_WHD2.TabIndex = 149;
|
|
this.lblHMI_WHD2.Text = "-";
|
|
this.lblHMI_WHD2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_kur.BackColor = Color.DarkGray;
|
|
this.lblHMI_kur.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_kur.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_kur.ForeColor = Color.White;
|
|
this.lblHMI_kur.Location = new Point(109, 50);
|
|
this.lblHMI_kur.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_kur.Name = "lblHMI_kur";
|
|
this.lblHMI_kur.Size = new Size(49, 28);
|
|
this.lblHMI_kur.TabIndex = 187;
|
|
this.lblHMI_kur.Text = "KUR";
|
|
this.lblHMI_kur.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_kur.Click += this.lblHMI_Click;
|
|
this.lblHMI_kur.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_trac_dr.BackColor = Color.DarkGray;
|
|
this.lblHMI_trac_dr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_trac_dr.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_trac_dr.ForeColor = Color.White;
|
|
this.lblHMI_trac_dr.Location = new Point(7, 20);
|
|
this.lblHMI_trac_dr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_trac_dr.Name = "lblHMI_trac_dr";
|
|
this.lblHMI_trac_dr.Size = new Size(49, 28);
|
|
this.lblHMI_trac_dr.TabIndex = 116;
|
|
this.lblHMI_trac_dr.Text = "DR";
|
|
this.lblHMI_trac_dr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_trac_dr.Click += this.lblHMI_Click;
|
|
this.lblHMI_trac_dr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_trac_br.BackColor = Color.DarkGray;
|
|
this.lblHMI_trac_br.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_trac_br.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_trac_br.ForeColor = Color.White;
|
|
this.lblHMI_trac_br.Location = new Point(58, 20);
|
|
this.lblHMI_trac_br.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_trac_br.Name = "lblHMI_trac_br";
|
|
this.lblHMI_trac_br.Size = new Size(49, 28);
|
|
this.lblHMI_trac_br.TabIndex = 117;
|
|
this.lblHMI_trac_br.Text = "BR";
|
|
this.lblHMI_trac_br.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_trac_br.Click += this.lblHMI_Click;
|
|
this.lblHMI_trac_br.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.label23.BackColor = Color.DodgerBlue;
|
|
this.label23.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label23.Font = new Font("Verdana", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label23.ForeColor = Color.WhiteSmoke;
|
|
this.label23.Location = new Point(10, 17);
|
|
this.label23.Margin = new Padding(2, 0, 2, 0);
|
|
this.label23.Name = "label23";
|
|
this.label23.Size = new Size(57, 28);
|
|
this.label23.TabIndex = 268;
|
|
this.label23.Text = "열번";
|
|
this.label23.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label23.Click += this.label23_Click;
|
|
this.lblHMI_TRNNO.BackColor = Color.DarkBlue;
|
|
this.lblHMI_TRNNO.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_TRNNO.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_TRNNO.ForeColor = Color.White;
|
|
this.lblHMI_TRNNO.Location = new Point(10, 47);
|
|
this.lblHMI_TRNNO.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_TRNNO.Name = "lblHMI_TRNNO";
|
|
this.lblHMI_TRNNO.Size = new Size(57, 28);
|
|
this.lblHMI_TRNNO.TabIndex = 166;
|
|
this.lblHMI_TRNNO.Text = "-";
|
|
this.lblHMI_TRNNO.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.chart1.BorderlineColor = Color.WhiteSmoke;
|
|
this.chart1.CausesValidation = false;
|
|
chartArea.AxisX.IsLabelAutoFit = false;
|
|
chartArea.AxisX.LabelAutoFitStyle = LabelAutoFitStyles.IncreaseFont;
|
|
chartArea.AxisX.LabelStyle.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
chartArea.AxisX.MajorGrid.LineColor = Color.Silver;
|
|
chartArea.AxisX.ScrollBar.Enabled = false;
|
|
chartArea.AxisY.Interval = 10.0;
|
|
chartArea.AxisY.LabelAutoFitStyle = (LabelAutoFitStyles.IncreaseFont | LabelAutoFitStyles.StaggeredLabels | LabelAutoFitStyles.LabelsAngleStep30 | LabelAutoFitStyles.WordWrap);
|
|
chartArea.AxisY.LabelStyle.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
chartArea.AxisY.MajorGrid.LineColor = Color.Silver;
|
|
chartArea.AxisY.Maximum = 100.0;
|
|
chartArea.CursorX.AutoScroll = false;
|
|
chartArea.CursorX.IsUserEnabled = true;
|
|
chartArea.CursorX.IsUserSelectionEnabled = true;
|
|
chartArea.Name = "ChartArea1";
|
|
chartArea.Position.Auto = false;
|
|
chartArea.Position.Height = 95f;
|
|
chartArea.Position.Width = 85f;
|
|
chartArea.Position.Y = 3f;
|
|
this.chart1.ChartAreas.Add(chartArea);
|
|
legend.Alignment = StringAlignment.Far;
|
|
legend.AutoFitMinFontSize = 10;
|
|
legend.BorderColor = Color.Silver;
|
|
legend.DockedToChartArea = "ChartArea1";
|
|
legend.Docking = Docking.Left;
|
|
legend.Font = new Font("Verdana", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
legend.IsEquallySpacedItems = true;
|
|
legend.IsTextAutoFit = false;
|
|
legend.Name = "Legend1";
|
|
legend.Position.Auto = false;
|
|
legend.Position.Height = 60f;
|
|
legend.Position.Width = 11.5f;
|
|
legend.Position.X = 88f;
|
|
legend.Position.Y = 22f;
|
|
legend.TableStyle = LegendTableStyle.Tall;
|
|
this.chart1.Legends.Add(legend);
|
|
this.chart1.Location = new Point(11, 419);
|
|
this.chart1.Margin = new Padding(2, 3, 2, 3);
|
|
this.chart1.Name = "chart1";
|
|
series.ChartArea = "ChartArea1";
|
|
series.ChartType = SeriesChartType.Point;
|
|
series.Color = Color.Black;
|
|
series.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
series.IsVisibleInLegend = false;
|
|
series.Legend = "Legend1";
|
|
series.MarkerStyle = MarkerStyle.Diamond;
|
|
series.Name = "station";
|
|
series2.BorderWidth = 2;
|
|
series2.ChartArea = "ChartArea1";
|
|
series2.ChartType = SeriesChartType.FastLine;
|
|
series2.Color = Color.MediumPurple;
|
|
series2.LabelBorderWidth = 2;
|
|
series2.Legend = "Legend1";
|
|
series2.Name = "pwm";
|
|
series3.BorderWidth = 2;
|
|
series3.ChartArea = "ChartArea1";
|
|
series3.ChartType = SeriesChartType.FastLine;
|
|
series3.Color = Color.LimeGreen;
|
|
series3.Legend = "Legend1";
|
|
series3.Name = "tasc";
|
|
series4.BorderWidth = 2;
|
|
series4.ChartArea = "ChartArea1";
|
|
series4.ChartType = SeriesChartType.FastLine;
|
|
series4.Color = Color.DodgerBlue;
|
|
series4.Legend = "Legend1";
|
|
series4.Name = "speed";
|
|
series5.BorderWidth = 2;
|
|
series5.ChartArea = "ChartArea1";
|
|
series5.ChartType = SeriesChartType.FastLine;
|
|
series5.Color = Color.Red;
|
|
series5.IsValueShownAsLabel = true;
|
|
series5.Legend = "Legend1";
|
|
series5.Name = "atc";
|
|
this.chart1.Series.Add(series);
|
|
this.chart1.Series.Add(series2);
|
|
this.chart1.Series.Add(series3);
|
|
this.chart1.Series.Add(series4);
|
|
this.chart1.Series.Add(series5);
|
|
this.chart1.Size = new Size(1513, 369);
|
|
this.chart1.TabIndex = 89;
|
|
this.chart1.Text = "chart1";
|
|
this.chart1.CursorPositionChanged += this.chart1_CursorPositionChanged;
|
|
this.chart1.AxisViewChanging += this.chart1_AxisViewChanging;
|
|
this.listViewJJAC.BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewJJAC.BorderStyle = BorderStyle.None;
|
|
this.listViewJJAC.Columns.AddRange(new ColumnHeader[]
|
|
{
|
|
this.columnHeader1,
|
|
this.columnHeader2
|
|
});
|
|
this.listViewJJAC.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.listViewJJAC.GridLines = true;
|
|
this.listViewJJAC.HeaderStyle = ColumnHeaderStyle.Nonclickable;
|
|
this.listViewJJAC.HideSelection = false;
|
|
this.listViewJJAC.Location = new Point(1064, -1);
|
|
this.listViewJJAC.Margin = new Padding(2, 3, 2, 3);
|
|
this.listViewJJAC.Name = "listViewJJAC";
|
|
this.listViewJJAC.Scrollable = false;
|
|
this.listViewJJAC.Size = new Size(232, 414);
|
|
this.listViewJJAC.TabIndex = 277;
|
|
this.listViewJJAC.UseCompatibleStateImageBehavior = false;
|
|
this.listViewJJAC.View = View.Details;
|
|
this.columnHeader1.Text = "TYPE";
|
|
this.columnHeader1.Width = 138;
|
|
this.columnHeader2.Text = "VALUE";
|
|
this.columnHeader2.TextAlign = HorizontalAlignment.Center;
|
|
this.columnHeader2.Width = 90;
|
|
this.listViewHOL.BackColor = SystemColors.GradientActiveCaption;
|
|
this.listViewHOL.BorderStyle = BorderStyle.None;
|
|
this.listViewHOL.Columns.AddRange(new ColumnHeader[]
|
|
{
|
|
this.columnHeader3,
|
|
this.columnHeader4
|
|
});
|
|
this.listViewHOL.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.listViewHOL.GridLines = true;
|
|
this.listViewHOL.HeaderStyle = ColumnHeaderStyle.Nonclickable;
|
|
this.listViewHOL.HideSelection = false;
|
|
this.listViewHOL.Location = new Point(1294, -1);
|
|
this.listViewHOL.Margin = new Padding(2, 3, 2, 3);
|
|
this.listViewHOL.Name = "listViewHOL";
|
|
this.listViewHOL.Scrollable = false;
|
|
this.listViewHOL.Size = new Size(228, 414);
|
|
this.listViewHOL.TabIndex = 278;
|
|
this.listViewHOL.UseCompatibleStateImageBehavior = false;
|
|
this.listViewHOL.View = View.Details;
|
|
this.columnHeader3.Text = "TYPE";
|
|
this.columnHeader3.Width = 137;
|
|
this.columnHeader4.Text = "VALUE";
|
|
this.columnHeader4.TextAlign = HorizontalAlignment.Center;
|
|
this.columnHeader4.Width = 90;
|
|
this.listViewHIDE.BackColor = SystemColors.GradientInactiveCaption;
|
|
this.listViewHIDE.BorderStyle = BorderStyle.None;
|
|
this.listViewHIDE.Columns.AddRange(new ColumnHeader[]
|
|
{
|
|
this.columnHeader5,
|
|
this.columnHeader6,
|
|
this.columnHeader7,
|
|
this.columnHeader8
|
|
});
|
|
this.listViewHIDE.Font = new Font("맑은 고딕", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.listViewHIDE.GridLines = true;
|
|
this.listViewHIDE.HideSelection = false;
|
|
this.listViewHIDE.Location = new Point(967, 419);
|
|
this.listViewHIDE.Margin = new Padding(2, 3, 2, 3);
|
|
this.listViewHIDE.Name = "listViewHIDE";
|
|
this.listViewHIDE.Size = new Size(413, 311);
|
|
this.listViewHIDE.TabIndex = 279;
|
|
this.listViewHIDE.UseCompatibleStateImageBehavior = false;
|
|
this.listViewHIDE.View = View.Details;
|
|
this.listViewHIDE.Visible = false;
|
|
this.columnHeader5.Text = "Group";
|
|
this.columnHeader5.Width = 57;
|
|
this.columnHeader6.Text = "CANID";
|
|
this.columnHeader7.Text = "Item";
|
|
this.columnHeader7.Width = 142;
|
|
this.columnHeader8.Text = "value";
|
|
this.timer2.Interval = 120;
|
|
this.timer2.Tick += this.timer2_Tick;
|
|
this.lblHMI_system_active.BackColor = Color.DarkGray;
|
|
this.lblHMI_system_active.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_system_active.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_system_active.ForeColor = Color.White;
|
|
this.lblHMI_system_active.Location = new Point(418, 30);
|
|
this.lblHMI_system_active.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_system_active.Name = "lblHMI_system_active";
|
|
this.lblHMI_system_active.Size = new Size(60, 28);
|
|
this.lblHMI_system_active.TabIndex = 84;
|
|
this.lblHMI_system_active.Text = "SYSTEM\r\nACTIVE";
|
|
this.lblHMI_system_active.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_system_active.Click += this.lblHMI_Click;
|
|
this.lblHMI_system_active.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.aquaGauge1.BackColor = Color.Transparent;
|
|
this.aquaGauge1.DialColor = Color.Black;
|
|
this.aquaGauge1.DialText = "Km/h";
|
|
this.aquaGauge1.Font = new Font("Verdana", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.aquaGauge1.ForeColor = Color.White;
|
|
this.aquaGauge1.Glossiness = 0f;
|
|
this.aquaGauge1.Location = new Point(6, 58);
|
|
this.aquaGauge1.Margin = new Padding(5, 8, 5, 8);
|
|
this.aquaGauge1.MaxValue = 140f;
|
|
this.aquaGauge1.MinValue = 0f;
|
|
this.aquaGauge1.Name = "aquaGauge1";
|
|
this.aquaGauge1.NoOfDivisions = 14;
|
|
this.aquaGauge1.NoOfSubDivisions = 4;
|
|
this.aquaGauge1.RecommendedValue = 0f;
|
|
this.aquaGauge1.RecommendedValueColor = Color.Red;
|
|
this.aquaGauge1.Size = new Size(224, 224);
|
|
this.aquaGauge1.TabIndex = 90;
|
|
this.aquaGauge1.ThresholdPercent = 1.5f;
|
|
this.aquaGauge1.Value = 0f;
|
|
this.aquaGauge1.ValueColor = Color.White;
|
|
this.aquaGauge1.Click += this.aquaGauge1_Click;
|
|
this.LVHMI_ERRMESS.BackColor = SystemColors.GradientActiveCaption;
|
|
this.LVHMI_ERRMESS.Columns.AddRange(new ColumnHeader[]
|
|
{
|
|
this.TYPE,
|
|
this.ERROR_MESSAGE
|
|
});
|
|
this.LVHMI_ERRMESS.Font = new Font("맑은 고딕", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.LVHMI_ERRMESS.GridLines = true;
|
|
this.LVHMI_ERRMESS.HideSelection = false;
|
|
this.LVHMI_ERRMESS.Location = new Point(3, 311);
|
|
this.LVHMI_ERRMESS.Margin = new Padding(2, 3, 2, 3);
|
|
this.LVHMI_ERRMESS.Name = "LVHMI_ERRMESS";
|
|
this.LVHMI_ERRMESS.Size = new Size(235, 93);
|
|
this.LVHMI_ERRMESS.TabIndex = 175;
|
|
this.LVHMI_ERRMESS.UseCompatibleStateImageBehavior = false;
|
|
this.LVHMI_ERRMESS.View = View.Details;
|
|
this.TYPE.Text = "TYPE";
|
|
this.ERROR_MESSAGE.Text = "ERR_MESSAGE";
|
|
this.ERROR_MESSAGE.Width = 169;
|
|
this.label22.Font = new Font("맑은 고딕", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.label22.ForeColor = Color.Black;
|
|
this.label22.Location = new Point(1, 289);
|
|
this.label22.Margin = new Padding(2, 0, 2, 0);
|
|
this.label22.Name = "label22";
|
|
this.label22.Size = new Size(138, 17);
|
|
this.label22.TabIndex = 176;
|
|
this.label22.Text = "ERROR MESSAGE";
|
|
this.label22.Click += this.label22_Click;
|
|
this.lblHMI_osc.BackColor = Color.DarkGray;
|
|
this.lblHMI_osc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_osc.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_osc.ForeColor = Color.White;
|
|
this.lblHMI_osc.Location = new Point(58, 50);
|
|
this.lblHMI_osc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_osc.Name = "lblHMI_osc";
|
|
this.lblHMI_osc.Size = new Size(49, 28);
|
|
this.lblHMI_osc.TabIndex = 185;
|
|
this.lblHMI_osc.Text = "OSC";
|
|
this.lblHMI_osc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_osc.Click += this.lblHMI_Click;
|
|
this.lblHMI_osc.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.gb_ATC.Controls.Add(this.label9);
|
|
this.gb_ATC.Controls.Add(this.label8);
|
|
this.gb_ATC.Controls.Add(this.label5);
|
|
this.gb_ATC.Controls.Add(this.label4);
|
|
this.gb_ATC.Controls.Add(this.label3);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_ATClimitSPD);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_tc2);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_tc1);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_ATC_CARRIERF);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_ATC_CODEF);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_ATC_CODE_CARRIERF);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_ATCCOD);
|
|
this.gb_ATC.Controls.Add(this.lblHMI_atcStatus);
|
|
this.gb_ATC.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.gb_ATC.Location = new Point(242, 30);
|
|
this.gb_ATC.Margin = new Padding(2, 3, 2, 3);
|
|
this.gb_ATC.Name = "gb_ATC";
|
|
this.gb_ATC.Padding = new Padding(2, 3, 2, 3);
|
|
this.gb_ATC.Size = new Size(371, 82);
|
|
this.gb_ATC.TabIndex = 255;
|
|
this.gb_ATC.TabStop = false;
|
|
this.gb_ATC.Text = "ATC";
|
|
this.label9.BackColor = Color.DodgerBlue;
|
|
this.label9.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label9.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label9.ForeColor = Color.WhiteSmoke;
|
|
this.label9.Location = new Point(301, 18);
|
|
this.label9.Margin = new Padding(2, 0, 2, 0);
|
|
this.label9.Name = "label9";
|
|
this.label9.Size = new Size(57, 28);
|
|
this.label9.TabIndex = 256;
|
|
this.label9.Text = "ATC\r\nLIMIT";
|
|
this.label9.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label8.BackColor = Color.DodgerBlue;
|
|
this.label8.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label8.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label8.ForeColor = Color.WhiteSmoke;
|
|
this.label8.Location = new Point(185, 18);
|
|
this.label8.Margin = new Padding(2, 0, 2, 0);
|
|
this.label8.Name = "label8";
|
|
this.label8.Size = new Size(57, 28);
|
|
this.label8.TabIndex = 255;
|
|
this.label8.Text = "CARR\r\nFREQ";
|
|
this.label8.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label8.Visible = false;
|
|
this.label5.BackColor = Color.DodgerBlue;
|
|
this.label5.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label5.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label5.ForeColor = Color.WhiteSmoke;
|
|
this.label5.Location = new Point(126, 18);
|
|
this.label5.Margin = new Padding(2, 0, 2, 0);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new Size(57, 28);
|
|
this.label5.TabIndex = 254;
|
|
this.label5.Text = "ATC\r\nCARR";
|
|
this.label5.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label4.BackColor = Color.DodgerBlue;
|
|
this.label4.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label4.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label4.ForeColor = Color.WhiteSmoke;
|
|
this.label4.Location = new Point(243, 18);
|
|
this.label4.Margin = new Padding(2, 0, 2, 0);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new Size(57, 28);
|
|
this.label4.TabIndex = 253;
|
|
this.label4.Text = "CODE\r\nFREQ";
|
|
this.label4.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label3.BackColor = Color.DodgerBlue;
|
|
this.label3.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label3.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label3.ForeColor = Color.WhiteSmoke;
|
|
this.label3.Location = new Point(185, 18);
|
|
this.label3.Margin = new Padding(2, 0, 2, 0);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new Size(57, 28);
|
|
this.label3.TabIndex = 252;
|
|
this.label3.Text = "ATC\r\nCODE";
|
|
this.label3.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label3.Click += this.lblHMI_ATCCOD_Click;
|
|
this.lblHMI_ATClimitSPD.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATClimitSPD.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATClimitSPD.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATClimitSPD.ForeColor = Color.White;
|
|
this.lblHMI_ATClimitSPD.Location = new Point(301, 49);
|
|
this.lblHMI_ATClimitSPD.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATClimitSPD.Name = "lblHMI_ATClimitSPD";
|
|
this.lblHMI_ATClimitSPD.Size = new Size(57, 28);
|
|
this.lblHMI_ATClimitSPD.TabIndex = 247;
|
|
this.lblHMI_ATClimitSPD.Text = "-";
|
|
this.lblHMI_ATClimitSPD.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tc2.BackColor = Color.DarkGray;
|
|
this.lblHMI_tc2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tc2.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tc2.ForeColor = Color.White;
|
|
this.lblHMI_tc2.Location = new Point(68, 18);
|
|
this.lblHMI_tc2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tc2.Name = "lblHMI_tc2";
|
|
this.lblHMI_tc2.Size = new Size(57, 28);
|
|
this.lblHMI_tc2.TabIndex = 131;
|
|
this.lblHMI_tc2.Text = "TC2";
|
|
this.lblHMI_tc2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tc2.Click += this.lblHMI_Click;
|
|
this.lblHMI_tc2.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_tc1.BackColor = Color.DarkGray;
|
|
this.lblHMI_tc1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tc1.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tc1.ForeColor = Color.White;
|
|
this.lblHMI_tc1.Location = new Point(9, 18);
|
|
this.lblHMI_tc1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tc1.Name = "lblHMI_tc1";
|
|
this.lblHMI_tc1.Size = new Size(57, 28);
|
|
this.lblHMI_tc1.TabIndex = 130;
|
|
this.lblHMI_tc1.Text = "TC1";
|
|
this.lblHMI_tc1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tc1.Click += this.lblHMI_Click;
|
|
this.lblHMI_tc1.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_ATC_CARRIERF.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATC_CARRIERF.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATC_CARRIERF.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATC_CARRIERF.ForeColor = Color.White;
|
|
this.lblHMI_ATC_CARRIERF.Location = new Point(126, 49);
|
|
this.lblHMI_ATC_CARRIERF.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATC_CARRIERF.Name = "lblHMI_ATC_CARRIERF";
|
|
this.lblHMI_ATC_CARRIERF.Size = new Size(57, 28);
|
|
this.lblHMI_ATC_CARRIERF.TabIndex = 191;
|
|
this.lblHMI_ATC_CARRIERF.Text = "-";
|
|
this.lblHMI_ATC_CARRIERF.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATC_CODEF.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATC_CODEF.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATC_CODEF.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATC_CODEF.ForeColor = Color.White;
|
|
this.lblHMI_ATC_CODEF.Location = new Point(243, 49);
|
|
this.lblHMI_ATC_CODEF.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATC_CODEF.Name = "lblHMI_ATC_CODEF";
|
|
this.lblHMI_ATC_CODEF.Size = new Size(57, 28);
|
|
this.lblHMI_ATC_CODEF.TabIndex = 195;
|
|
this.lblHMI_ATC_CODEF.Text = "-";
|
|
this.lblHMI_ATC_CODEF.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATC_CODE_CARRIERF.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATC_CODE_CARRIERF.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATC_CODE_CARRIERF.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATC_CODE_CARRIERF.ForeColor = Color.White;
|
|
this.lblHMI_ATC_CODE_CARRIERF.Location = new Point(185, 49);
|
|
this.lblHMI_ATC_CODE_CARRIERF.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATC_CODE_CARRIERF.Name = "lblHMI_ATC_CODE_CARRIERF";
|
|
this.lblHMI_ATC_CODE_CARRIERF.Size = new Size(57, 28);
|
|
this.lblHMI_ATC_CODE_CARRIERF.TabIndex = 193;
|
|
this.lblHMI_ATC_CODE_CARRIERF.Text = "-";
|
|
this.lblHMI_ATC_CODE_CARRIERF.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATC_CODE_CARRIERF.Visible = false;
|
|
this.lblHMI_ATCCOD.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATCCOD.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATCCOD.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATCCOD.ForeColor = Color.White;
|
|
this.lblHMI_ATCCOD.Location = new Point(185, 49);
|
|
this.lblHMI_ATCCOD.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATCCOD.Name = "lblHMI_ATCCOD";
|
|
this.lblHMI_ATCCOD.Size = new Size(57, 28);
|
|
this.lblHMI_ATCCOD.TabIndex = 189;
|
|
this.lblHMI_ATCCOD.Text = "-";
|
|
this.lblHMI_ATCCOD.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATCCOD.Click += this.lblHMI_ATCCOD_Click;
|
|
this.lblHMI_atcStatus.BackColor = Color.DarkBlue;
|
|
this.lblHMI_atcStatus.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_atcStatus.Font = new Font("맑은 고딕", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_atcStatus.ForeColor = Color.White;
|
|
this.lblHMI_atcStatus.Location = new Point(9, 49);
|
|
this.lblHMI_atcStatus.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_atcStatus.Name = "lblHMI_atcStatus";
|
|
this.lblHMI_atcStatus.Size = new Size(116, 28);
|
|
this.lblHMI_atcStatus.TabIndex = 140;
|
|
this.lblHMI_atcStatus.Text = "ATC STATUS";
|
|
this.lblHMI_atcStatus.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_atcStatus.Click += this.lblHMI_atcStatus_Click;
|
|
this.label1.BackColor = Color.DodgerBlue;
|
|
this.label1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label1.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label1.ForeColor = Color.WhiteSmoke;
|
|
this.label1.Location = new Point(299, 30);
|
|
this.label1.Margin = new Padding(2, 0, 2, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new Size(57, 28);
|
|
this.label1.TabIndex = 250;
|
|
this.label1.Text = "ATC\r\nVER";
|
|
this.label1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_SWver.BackColor = Color.DarkBlue;
|
|
this.lblHMI_SWver.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_SWver.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_SWver.ForeColor = Color.White;
|
|
this.lblHMI_SWver.Location = new Point(299, 60);
|
|
this.lblHMI_SWver.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_SWver.Name = "lblHMI_SWver";
|
|
this.lblHMI_SWver.Size = new Size(57, 28);
|
|
this.lblHMI_SWver.TabIndex = 249;
|
|
this.lblHMI_SWver.Text = "-";
|
|
this.lblHMI_SWver.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.gb_ATO.Controls.Add(this.lblHMI_ato_eb_req);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_tascdb);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_tasc);
|
|
this.gb_ATO.Controls.Add(this.oscLABEL);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_liveOSCf);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_osc_f0_ok);
|
|
this.gb_ATO.Controls.Add(this.label26);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_marker);
|
|
this.gb_ATO.Controls.Add(this.label28);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_pwm);
|
|
this.gb_ATO.Controls.Add(this.labelDTG);
|
|
this.gb_ATO.Controls.Add(this.lblHMI_movedistatnce);
|
|
this.gb_ATO.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.gb_ATO.Location = new Point(242, 117);
|
|
this.gb_ATO.Margin = new Padding(2, 3, 2, 3);
|
|
this.gb_ATO.Name = "gb_ATO";
|
|
this.gb_ATO.Padding = new Padding(2, 3, 2, 3);
|
|
this.gb_ATO.Size = new Size(374, 87);
|
|
this.gb_ATO.TabIndex = 257;
|
|
this.gb_ATO.TabStop = false;
|
|
this.gb_ATO.Text = "ATO";
|
|
this.lblHMI_ato_eb_req.BackColor = Color.DarkGray;
|
|
this.lblHMI_ato_eb_req.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ato_eb_req.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ato_eb_req.ForeColor = Color.White;
|
|
this.lblHMI_ato_eb_req.Location = new Point(310, 20);
|
|
this.lblHMI_ato_eb_req.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ato_eb_req.Name = "lblHMI_ato_eb_req";
|
|
this.lblHMI_ato_eb_req.Size = new Size(57, 28);
|
|
this.lblHMI_ato_eb_req.TabIndex = 276;
|
|
this.lblHMI_ato_eb_req.Text = "ATO EB\r\nREQ";
|
|
this.lblHMI_ato_eb_req.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ato_eb_req.Click += this.lblHMI_Click;
|
|
this.lblHMI_ato_eb_req.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_tascdb.BackColor = Color.DarkGray;
|
|
this.lblHMI_tascdb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tascdb.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tascdb.ForeColor = Color.White;
|
|
this.lblHMI_tascdb.Location = new Point(249, 51);
|
|
this.lblHMI_tascdb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tascdb.Name = "lblHMI_tascdb";
|
|
this.lblHMI_tascdb.Size = new Size(57, 28);
|
|
this.lblHMI_tascdb.TabIndex = 274;
|
|
this.lblHMI_tascdb.Text = "TASC\r\nDB";
|
|
this.lblHMI_tascdb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tascdb.Click += this.lblHMI_Click;
|
|
this.lblHMI_tascdb.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.oscLABEL.BackColor = Color.DodgerBlue;
|
|
this.oscLABEL.BorderStyle = BorderStyle.FixedSingle;
|
|
this.oscLABEL.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.oscLABEL.ForeColor = Color.WhiteSmoke;
|
|
this.oscLABEL.Location = new Point(68, 20);
|
|
this.oscLABEL.Margin = new Padding(2, 0, 2, 0);
|
|
this.oscLABEL.Name = "oscLABEL";
|
|
this.oscLABEL.Size = new Size(57, 28);
|
|
this.oscLABEL.TabIndex = 285;
|
|
this.oscLABEL.Text = "OSC \r\n주파수";
|
|
this.oscLABEL.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_liveOSCf.BackColor = Color.DarkBlue;
|
|
this.lblHMI_liveOSCf.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_liveOSCf.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_liveOSCf.ForeColor = Color.White;
|
|
this.lblHMI_liveOSCf.Location = new Point(68, 51);
|
|
this.lblHMI_liveOSCf.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_liveOSCf.Name = "lblHMI_liveOSCf";
|
|
this.lblHMI_liveOSCf.Size = new Size(57, 28);
|
|
this.lblHMI_liveOSCf.TabIndex = 284;
|
|
this.lblHMI_liveOSCf.Text = "-";
|
|
this.lblHMI_liveOSCf.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_osc_f0_ok.BackColor = Color.DarkGray;
|
|
this.lblHMI_osc_f0_ok.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_osc_f0_ok.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_osc_f0_ok.ForeColor = Color.White;
|
|
this.lblHMI_osc_f0_ok.Location = new Point(310, 51);
|
|
this.lblHMI_osc_f0_ok.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_osc_f0_ok.Name = "lblHMI_osc_f0_ok";
|
|
this.lblHMI_osc_f0_ok.Size = new Size(57, 28);
|
|
this.lblHMI_osc_f0_ok.TabIndex = 189;
|
|
this.lblHMI_osc_f0_ok.Text = "상시발진";
|
|
this.lblHMI_osc_f0_ok.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_osc_f0_ok.Click += this.lblHMI_Click;
|
|
this.lblHMI_osc_f0_ok.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.label26.BackColor = Color.DodgerBlue;
|
|
this.label26.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label26.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label26.ForeColor = Color.WhiteSmoke;
|
|
this.label26.Location = new Point(9, 20);
|
|
this.label26.Margin = new Padding(2, 0, 2, 0);
|
|
this.label26.Name = "label26";
|
|
this.label26.Size = new Size(57, 28);
|
|
this.label26.TabIndex = 271;
|
|
this.label26.Text = "ATO\r\nMARKER";
|
|
this.label26.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label26.Click += this.lblHMI_marker_Click;
|
|
this.lblHMI_marker.BackColor = Color.DarkBlue;
|
|
this.lblHMI_marker.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_marker.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_marker.ForeColor = Color.White;
|
|
this.lblHMI_marker.Location = new Point(9, 51);
|
|
this.lblHMI_marker.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_marker.Name = "lblHMI_marker";
|
|
this.lblHMI_marker.Size = new Size(57, 28);
|
|
this.lblHMI_marker.TabIndex = 240;
|
|
this.lblHMI_marker.Text = "-";
|
|
this.lblHMI_marker.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_marker.Click += this.lblHMI_marker_Click;
|
|
this.label28.BackColor = Color.DodgerBlue;
|
|
this.label28.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label28.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label28.ForeColor = Color.WhiteSmoke;
|
|
this.label28.Location = new Point(126, 20);
|
|
this.label28.Margin = new Padding(2, 0, 2, 0);
|
|
this.label28.Name = "label28";
|
|
this.label28.Size = new Size(57, 28);
|
|
this.label28.TabIndex = 273;
|
|
this.label28.Text = "PWM";
|
|
this.label28.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_pwm.BackColor = Color.DarkBlue;
|
|
this.lblHMI_pwm.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_pwm.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_pwm.ForeColor = Color.White;
|
|
this.lblHMI_pwm.Location = new Point(126, 51);
|
|
this.lblHMI_pwm.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_pwm.Name = "lblHMI_pwm";
|
|
this.lblHMI_pwm.Size = new Size(57, 28);
|
|
this.lblHMI_pwm.TabIndex = 252;
|
|
this.lblHMI_pwm.Text = "-";
|
|
this.lblHMI_pwm.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.labelDTG.BackColor = Color.DodgerBlue;
|
|
this.labelDTG.BorderStyle = BorderStyle.FixedSingle;
|
|
this.labelDTG.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.labelDTG.ForeColor = Color.WhiteSmoke;
|
|
this.labelDTG.Location = new Point(185, 20);
|
|
this.labelDTG.Margin = new Padding(2, 0, 2, 0);
|
|
this.labelDTG.Name = "labelDTG";
|
|
this.labelDTG.Size = new Size(62, 28);
|
|
this.labelDTG.TabIndex = 270;
|
|
this.labelDTG.Text = "남은거리(m)";
|
|
this.labelDTG.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.labelDTG.Click += this.labelDTG_Click;
|
|
this.lblHMI_movedistatnce.BackColor = Color.DarkBlue;
|
|
this.lblHMI_movedistatnce.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_movedistatnce.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_movedistatnce.ForeColor = Color.White;
|
|
this.lblHMI_movedistatnce.Location = new Point(185, 51);
|
|
this.lblHMI_movedistatnce.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_movedistatnce.Name = "lblHMI_movedistatnce";
|
|
this.lblHMI_movedistatnce.Size = new Size(62, 28);
|
|
this.lblHMI_movedistatnce.TabIndex = 159;
|
|
this.lblHMI_movedistatnce.Text = "-";
|
|
this.lblHMI_movedistatnce.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_movedistatnce.Click += this.lblHMI_movedistatnce_Click;
|
|
this.label29.BackColor = Color.DodgerBlue;
|
|
this.label29.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label29.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label29.ForeColor = Color.WhiteSmoke;
|
|
this.label29.Location = new Point(924, 452);
|
|
this.label29.Margin = new Padding(2, 0, 2, 0);
|
|
this.label29.Name = "label29";
|
|
this.label29.Size = new Size(57, 28);
|
|
this.label29.TabIndex = 258;
|
|
this.label29.Text = "ATO\r\nLIMIT";
|
|
this.label29.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label29.Visible = false;
|
|
this.lblHMI_ATOlimitSPD.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATOlimitSPD.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATOlimitSPD.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATOlimitSPD.ForeColor = Color.White;
|
|
this.lblHMI_ATOlimitSPD.Location = new Point(924, 483);
|
|
this.lblHMI_ATOlimitSPD.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATOlimitSPD.Name = "lblHMI_ATOlimitSPD";
|
|
this.lblHMI_ATOlimitSPD.Size = new Size(57, 28);
|
|
this.lblHMI_ATOlimitSPD.TabIndex = 245;
|
|
this.lblHMI_ATOlimitSPD.Text = "-";
|
|
this.lblHMI_ATOlimitSPD.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATOlimitSPD.Visible = false;
|
|
this.label21.BackColor = Color.DodgerBlue;
|
|
this.label21.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label21.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label21.ForeColor = Color.WhiteSmoke;
|
|
this.label21.Location = new Point(628, 478);
|
|
this.label21.Margin = new Padding(2, 0, 2, 0);
|
|
this.label21.Name = "label21";
|
|
this.label21.Size = new Size(57, 28);
|
|
this.label21.TabIndex = 258;
|
|
this.label21.Text = "ATO\r\nVER";
|
|
this.label21.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label21.Visible = false;
|
|
this.lblHMI_ATOCSWver.BackColor = Color.DarkBlue;
|
|
this.lblHMI_ATOCSWver.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ATOCSWver.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ATOCSWver.ForeColor = Color.White;
|
|
this.lblHMI_ATOCSWver.Location = new Point(628, 509);
|
|
this.lblHMI_ATOCSWver.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ATOCSWver.Name = "lblHMI_ATOCSWver";
|
|
this.lblHMI_ATOCSWver.Size = new Size(57, 28);
|
|
this.lblHMI_ATOCSWver.TabIndex = 254;
|
|
this.lblHMI_ATOCSWver.Text = "-";
|
|
this.lblHMI_ATOCSWver.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ATOCSWver.Visible = false;
|
|
this.lblHMI_ato_start_btn.BackColor = Color.DarkGray;
|
|
this.lblHMI_ato_start_btn.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ato_start_btn.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ato_start_btn.ForeColor = Color.White;
|
|
this.lblHMI_ato_start_btn.Location = new Point(511, 51);
|
|
this.lblHMI_ato_start_btn.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ato_start_btn.Name = "lblHMI_ato_start_btn";
|
|
this.lblHMI_ato_start_btn.Size = new Size(60, 28);
|
|
this.lblHMI_ato_start_btn.TabIndex = 275;
|
|
this.lblHMI_ato_start_btn.Text = "START\r\nBTN\r\n";
|
|
this.lblHMI_ato_start_btn.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ato_start_btn.Click += this.lblHMI_Click;
|
|
this.lblHMI_ato_start_btn.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.gb_TWC.Controls.Add(this.lblHMI_trainberth);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_wrongdoor);
|
|
this.gb_TWC.Controls.Add(this.label7);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_PSTN);
|
|
this.gb_TWC.Controls.Add(this.label18);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_door_close_warning);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_NSTN);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_NEXTDR);
|
|
this.gb_TWC.Controls.Add(this.label19);
|
|
this.gb_TWC.Controls.Add(this.label_nextDoor);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_LSTN);
|
|
this.gb_TWC.Controls.Add(this.label23);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_twct_en);
|
|
this.gb_TWC.Controls.Add(this.lblHMI_TRNNO);
|
|
this.gb_TWC.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.gb_TWC.Location = new Point(617, 30);
|
|
this.gb_TWC.Margin = new Padding(2, 3, 2, 3);
|
|
this.gb_TWC.Name = "gb_TWC";
|
|
this.gb_TWC.Padding = new Padding(2, 3, 2, 3);
|
|
this.gb_TWC.Size = new Size(424, 82);
|
|
this.gb_TWC.TabIndex = 274;
|
|
this.gb_TWC.TabStop = false;
|
|
this.gb_TWC.Text = "TWC";
|
|
this.lblHMI_trainberth.BackColor = Color.DarkGray;
|
|
this.lblHMI_trainberth.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_trainberth.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_trainberth.ForeColor = Color.White;
|
|
this.lblHMI_trainberth.Location = new Point(302, 48);
|
|
this.lblHMI_trainberth.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_trainberth.Name = "lblHMI_trainberth";
|
|
this.lblHMI_trainberth.Size = new Size(57, 28);
|
|
this.lblHMI_trainberth.TabIndex = 269;
|
|
this.lblHMI_trainberth.Text = "TRAIN\r\nBERTH";
|
|
this.lblHMI_trainberth.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_trainberth.Click += this.lblHMI_Click;
|
|
this.lblHMI_trainberth.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_wrongdoor.BackColor = Color.DarkGray;
|
|
this.lblHMI_wrongdoor.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_wrongdoor.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_wrongdoor.ForeColor = Color.White;
|
|
this.lblHMI_wrongdoor.Location = new Point(361, 48);
|
|
this.lblHMI_wrongdoor.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_wrongdoor.Name = "lblHMI_wrongdoor";
|
|
this.lblHMI_wrongdoor.Size = new Size(57, 28);
|
|
this.lblHMI_wrongdoor.TabIndex = 186;
|
|
this.lblHMI_wrongdoor.Text = "WRONG\r\nDoor";
|
|
this.lblHMI_wrongdoor.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_wrongdoor.Click += this.lblHMI_Click;
|
|
this.lblHMI_wrongdoor.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.label7.BackColor = Color.DodgerBlue;
|
|
this.label7.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label7.Font = new Font("Verdana", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label7.ForeColor = Color.WhiteSmoke;
|
|
this.label7.Location = new Point(68, 17);
|
|
this.label7.Margin = new Padding(2, 0, 2, 0);
|
|
this.label7.Name = "label7";
|
|
this.label7.Size = new Size(57, 28);
|
|
this.label7.TabIndex = 264;
|
|
this.label7.Text = "현재역";
|
|
this.label7.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_PSTN.BackColor = Color.DarkBlue;
|
|
this.lblHMI_PSTN.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_PSTN.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_PSTN.ForeColor = Color.White;
|
|
this.lblHMI_PSTN.Location = new Point(68, 48);
|
|
this.lblHMI_PSTN.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_PSTN.Name = "lblHMI_PSTN";
|
|
this.lblHMI_PSTN.Size = new Size(57, 28);
|
|
this.lblHMI_PSTN.TabIndex = 180;
|
|
this.lblHMI_PSTN.Text = "-";
|
|
this.lblHMI_PSTN.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label18.BackColor = Color.DodgerBlue;
|
|
this.label18.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label18.Font = new Font("Verdana", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label18.ForeColor = Color.WhiteSmoke;
|
|
this.label18.Location = new Point(126, 17);
|
|
this.label18.Margin = new Padding(2, 0, 2, 0);
|
|
this.label18.Name = "label18";
|
|
this.label18.Size = new Size(57, 28);
|
|
this.label18.TabIndex = 265;
|
|
this.label18.Text = "다음역";
|
|
this.label18.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_door_close_warning.BackColor = Color.DarkGray;
|
|
this.lblHMI_door_close_warning.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_door_close_warning.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_door_close_warning.ForeColor = Color.White;
|
|
this.lblHMI_door_close_warning.Location = new Point(302, 17);
|
|
this.lblHMI_door_close_warning.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_door_close_warning.Name = "lblHMI_door_close_warning";
|
|
this.lblHMI_door_close_warning.Size = new Size(57, 28);
|
|
this.lblHMI_door_close_warning.TabIndex = 184;
|
|
this.lblHMI_door_close_warning.Text = "DCW";
|
|
this.lblHMI_door_close_warning.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_door_close_warning.Click += this.lblHMI_Click;
|
|
this.lblHMI_door_close_warning.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_NSTN.BackColor = Color.DarkBlue;
|
|
this.lblHMI_NSTN.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_NSTN.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_NSTN.ForeColor = Color.White;
|
|
this.lblHMI_NSTN.Location = new Point(126, 48);
|
|
this.lblHMI_NSTN.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_NSTN.Name = "lblHMI_NSTN";
|
|
this.lblHMI_NSTN.Size = new Size(57, 28);
|
|
this.lblHMI_NSTN.TabIndex = 179;
|
|
this.lblHMI_NSTN.Text = "-";
|
|
this.lblHMI_NSTN.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_NEXTDR.BackColor = Color.DarkBlue;
|
|
this.lblHMI_NEXTDR.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_NEXTDR.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_NEXTDR.ForeColor = Color.White;
|
|
this.lblHMI_NEXTDR.Location = new Point(243, 48);
|
|
this.lblHMI_NEXTDR.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_NEXTDR.Name = "lblHMI_NEXTDR";
|
|
this.lblHMI_NEXTDR.Size = new Size(57, 28);
|
|
this.lblHMI_NEXTDR.TabIndex = 178;
|
|
this.lblHMI_NEXTDR.Text = "-";
|
|
this.lblHMI_NEXTDR.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label19.BackColor = Color.DodgerBlue;
|
|
this.label19.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label19.Font = new Font("Verdana", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label19.ForeColor = Color.WhiteSmoke;
|
|
this.label19.Location = new Point(185, 17);
|
|
this.label19.Margin = new Padding(2, 0, 2, 0);
|
|
this.label19.Name = "label19";
|
|
this.label19.Size = new Size(57, 28);
|
|
this.label19.TabIndex = 266;
|
|
this.label19.Text = "종착역";
|
|
this.label19.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label_nextDoor.BackColor = Color.DodgerBlue;
|
|
this.label_nextDoor.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label_nextDoor.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.label_nextDoor.ForeColor = Color.WhiteSmoke;
|
|
this.label_nextDoor.Location = new Point(243, 17);
|
|
this.label_nextDoor.Margin = new Padding(2, 0, 2, 0);
|
|
this.label_nextDoor.Name = "label_nextDoor";
|
|
this.label_nextDoor.Size = new Size(57, 28);
|
|
this.label_nextDoor.TabIndex = 267;
|
|
this.label_nextDoor.Text = "NEXT\r\nDoor";
|
|
this.label_nextDoor.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label_nextDoor.Click += this.label_nextDoor_Click;
|
|
this.lblHMI_LSTN.BackColor = Color.DarkBlue;
|
|
this.lblHMI_LSTN.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_LSTN.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_LSTN.ForeColor = Color.White;
|
|
this.lblHMI_LSTN.Location = new Point(185, 48);
|
|
this.lblHMI_LSTN.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_LSTN.Name = "lblHMI_LSTN";
|
|
this.lblHMI_LSTN.Size = new Size(57, 28);
|
|
this.lblHMI_LSTN.TabIndex = 181;
|
|
this.lblHMI_LSTN.Text = "-";
|
|
this.lblHMI_LSTN.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_twct_en.BackColor = Color.DarkGray;
|
|
this.lblHMI_twct_en.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_twct_en.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_twct_en.ForeColor = Color.White;
|
|
this.lblHMI_twct_en.Location = new Point(361, 17);
|
|
this.lblHMI_twct_en.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_twct_en.Name = "lblHMI_twct_en";
|
|
this.lblHMI_twct_en.Size = new Size(57, 28);
|
|
this.lblHMI_twct_en.TabIndex = 183;
|
|
this.lblHMI_twct_en.Text = "TWCTx\r\nEnable";
|
|
this.lblHMI_twct_en.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_twct_en.Click += this.lblHMI_Click;
|
|
this.lblHMI_twct_en.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_adol.BackColor = Color.DarkGray;
|
|
this.lblHMI_adol.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_adol.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_adol.ForeColor = Color.White;
|
|
this.lblHMI_adol.Location = new Point(160, 20);
|
|
this.lblHMI_adol.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_adol.Name = "lblHMI_adol";
|
|
this.lblHMI_adol.Size = new Size(49, 28);
|
|
this.lblHMI_adol.TabIndex = 119;
|
|
this.lblHMI_adol.Text = "ADOL";
|
|
this.lblHMI_adol.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_adol.Click += this.lblHMI_Click;
|
|
this.lblHMI_adol.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.groupBox2.Controls.Add(this.lblHMI_fail_atcr);
|
|
this.groupBox2.Controls.Add(this.lblHMI_fail_atoc);
|
|
this.groupBox2.Controls.Add(this.lblHMI_fail_tcms);
|
|
this.groupBox2.Controls.Add(this.lblHMI_fail_tacho1);
|
|
this.groupBox2.Controls.Add(this.lblHMI_fail_tacho2);
|
|
this.groupBox2.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox2.Location = new Point(856, 117);
|
|
this.groupBox2.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox2.Size = new Size(185, 87);
|
|
this.groupBox2.TabIndex = 275;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "FAIL";
|
|
this.lblHMI_fail_atcr.BackColor = Color.DarkGray;
|
|
this.lblHMI_fail_atcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fail_atcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fail_atcr.ForeColor = Color.White;
|
|
this.lblHMI_fail_atcr.Location = new Point(6, 21);
|
|
this.lblHMI_fail_atcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fail_atcr.Name = "lblHMI_fail_atcr";
|
|
this.lblHMI_fail_atcr.Size = new Size(57, 28);
|
|
this.lblHMI_fail_atcr.TabIndex = 110;
|
|
this.lblHMI_fail_atcr.Text = "ATC.R";
|
|
this.lblHMI_fail_atcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fail_atcr.Click += this.lblHMI_Click;
|
|
this.lblHMI_fail_atcr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_fail_atoc.BackColor = Color.DarkGray;
|
|
this.lblHMI_fail_atoc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fail_atoc.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fail_atoc.ForeColor = Color.White;
|
|
this.lblHMI_fail_atoc.Location = new Point(64, 21);
|
|
this.lblHMI_fail_atoc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fail_atoc.Name = "lblHMI_fail_atoc";
|
|
this.lblHMI_fail_atoc.Size = new Size(57, 28);
|
|
this.lblHMI_fail_atoc.TabIndex = 111;
|
|
this.lblHMI_fail_atoc.Text = "ATO.C";
|
|
this.lblHMI_fail_atoc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fail_atoc.Click += this.lblHMI_Click;
|
|
this.lblHMI_fail_atoc.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_fail_tcms.BackColor = Color.DarkGray;
|
|
this.lblHMI_fail_tcms.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fail_tcms.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fail_tcms.ForeColor = Color.White;
|
|
this.lblHMI_fail_tcms.Location = new Point(122, 21);
|
|
this.lblHMI_fail_tcms.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fail_tcms.Name = "lblHMI_fail_tcms";
|
|
this.lblHMI_fail_tcms.Size = new Size(57, 28);
|
|
this.lblHMI_fail_tcms.TabIndex = 112;
|
|
this.lblHMI_fail_tcms.Text = "TCMS";
|
|
this.lblHMI_fail_tcms.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fail_tcms.Click += this.lblHMI_Click;
|
|
this.lblHMI_fail_tcms.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_fail_tacho1.BackColor = Color.DarkGray;
|
|
this.lblHMI_fail_tacho1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fail_tacho1.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fail_tacho1.ForeColor = Color.White;
|
|
this.lblHMI_fail_tacho1.Location = new Point(6, 52);
|
|
this.lblHMI_fail_tacho1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fail_tacho1.Name = "lblHMI_fail_tacho1";
|
|
this.lblHMI_fail_tacho1.Size = new Size(88, 28);
|
|
this.lblHMI_fail_tacho1.TabIndex = 114;
|
|
this.lblHMI_fail_tacho1.Text = "TACHO #1";
|
|
this.lblHMI_fail_tacho1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fail_tacho1.Click += this.lblHMI_Click;
|
|
this.lblHMI_fail_tacho1.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_fail_tacho2.BackColor = Color.DarkGray;
|
|
this.lblHMI_fail_tacho2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fail_tacho2.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fail_tacho2.ForeColor = Color.White;
|
|
this.lblHMI_fail_tacho2.Location = new Point(95, 52);
|
|
this.lblHMI_fail_tacho2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fail_tacho2.Name = "lblHMI_fail_tacho2";
|
|
this.lblHMI_fail_tacho2.Size = new Size(84, 28);
|
|
this.lblHMI_fail_tacho2.TabIndex = 113;
|
|
this.lblHMI_fail_tacho2.Text = "TACHO #2";
|
|
this.lblHMI_fail_tacho2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fail_tacho2.Click += this.lblHMI_Click;
|
|
this.lblHMI_fail_tacho2.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.groupBox1.Controls.Add(this.lblHMI_fa);
|
|
this.groupBox1.Controls.Add(this.lblHMI_ato_start_btn);
|
|
this.groupBox1.Controls.Add(this.lblHMI_mascon_dr);
|
|
this.groupBox1.Controls.Add(this.lblHMI_fmc);
|
|
this.groupBox1.Controls.Add(this.lblHMI_mascon_br);
|
|
this.groupBox1.Controls.Add(this.lblHMI_hcr);
|
|
this.groupBox1.Controls.Add(this.lblHMI_yard);
|
|
this.groupBox1.Controls.Add(this.lblHMI_mascon_eb);
|
|
this.groupBox1.Controls.Add(this.lblHMI_tcr);
|
|
this.groupBox1.Controls.Add(this.lblHMI_auto);
|
|
this.groupBox1.Controls.Add(this.lblHMI_mcs);
|
|
this.groupBox1.Controls.Add(this.lblHMI_door_open);
|
|
this.groupBox1.Controls.Add(this.lblHMI_door_close);
|
|
this.groupBox1.Controls.Add(this.lblHMI_reversingrod_fwd);
|
|
this.groupBox1.Controls.Add(this.lblHMI_reversingrod_neu);
|
|
this.groupBox1.Controls.Add(this.lblHMI_reversingrod_rvs);
|
|
this.groupBox1.Controls.Add(this.lblHMI_psd_open);
|
|
this.groupBox1.Controls.Add(this.lblHMI_psd_close);
|
|
this.groupBox1.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox1.Location = new Point(242, 214);
|
|
this.groupBox1.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox1.Size = new Size(580, 87);
|
|
this.groupBox1.TabIndex = 275;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "DI (ATC)";
|
|
this.lblHMI_fa.BackColor = Color.DarkGray;
|
|
this.lblHMI_fa.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fa.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fa.ForeColor = Color.White;
|
|
this.lblHMI_fa.Location = new Point(139, 21);
|
|
this.lblHMI_fa.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fa.Name = "lblHMI_fa";
|
|
this.lblHMI_fa.Size = new Size(60, 28);
|
|
this.lblHMI_fa.TabIndex = 158;
|
|
this.lblHMI_fa.Text = "FA";
|
|
this.lblHMI_fa.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fa.Click += this.lblHMI_Click;
|
|
this.lblHMI_fa.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_mascon_dr.BackColor = Color.DarkGray;
|
|
this.lblHMI_mascon_dr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_mascon_dr.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_mascon_dr.ForeColor = Color.White;
|
|
this.lblHMI_mascon_dr.Location = new Point(263, 51);
|
|
this.lblHMI_mascon_dr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_mascon_dr.Name = "lblHMI_mascon_dr";
|
|
this.lblHMI_mascon_dr.Size = new Size(60, 28);
|
|
this.lblHMI_mascon_dr.TabIndex = 273;
|
|
this.lblHMI_mascon_dr.Text = "마스콘\r\nDR";
|
|
this.lblHMI_mascon_dr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_mascon_dr.Click += this.lblHMI_Click;
|
|
this.lblHMI_mascon_dr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_fmc.BackColor = Color.DarkGray;
|
|
this.lblHMI_fmc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_fmc.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_fmc.ForeColor = Color.White;
|
|
this.lblHMI_fmc.Location = new Point(387, 21);
|
|
this.lblHMI_fmc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_fmc.Name = "lblHMI_fmc";
|
|
this.lblHMI_fmc.Size = new Size(60, 28);
|
|
this.lblHMI_fmc.TabIndex = 162;
|
|
this.lblHMI_fmc.Text = "FMC";
|
|
this.lblHMI_fmc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_fmc.Click += this.lblHMI_Click;
|
|
this.lblHMI_fmc.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_mascon_br.BackColor = Color.DarkGray;
|
|
this.lblHMI_mascon_br.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_mascon_br.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_mascon_br.ForeColor = Color.White;
|
|
this.lblHMI_mascon_br.Location = new Point(201, 51);
|
|
this.lblHMI_mascon_br.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_mascon_br.Name = "lblHMI_mascon_br";
|
|
this.lblHMI_mascon_br.Size = new Size(60, 28);
|
|
this.lblHMI_mascon_br.TabIndex = 274;
|
|
this.lblHMI_mascon_br.Text = "마스콘\r\nBR";
|
|
this.lblHMI_mascon_br.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_mascon_br.Click += this.lblHMI_Click;
|
|
this.lblHMI_mascon_br.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_hcr.BackColor = Color.DarkGray;
|
|
this.lblHMI_hcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_hcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_hcr.ForeColor = Color.White;
|
|
this.lblHMI_hcr.Location = new Point(15, 21);
|
|
this.lblHMI_hcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_hcr.Name = "lblHMI_hcr";
|
|
this.lblHMI_hcr.Size = new Size(60, 28);
|
|
this.lblHMI_hcr.TabIndex = 93;
|
|
this.lblHMI_hcr.Text = "HCR";
|
|
this.lblHMI_hcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_hcr.Click += this.lblHMI_Click;
|
|
this.lblHMI_hcr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_yard.BackColor = Color.DarkGray;
|
|
this.lblHMI_yard.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_yard.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_yard.ForeColor = Color.White;
|
|
this.lblHMI_yard.Location = new Point(325, 21);
|
|
this.lblHMI_yard.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_yard.Name = "lblHMI_yard";
|
|
this.lblHMI_yard.Size = new Size(60, 28);
|
|
this.lblHMI_yard.TabIndex = 161;
|
|
this.lblHMI_yard.Text = "YARD";
|
|
this.lblHMI_yard.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_yard.Click += this.lblHMI_Click;
|
|
this.lblHMI_yard.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_mascon_eb.BackColor = Color.DarkGray;
|
|
this.lblHMI_mascon_eb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_mascon_eb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_mascon_eb.ForeColor = Color.White;
|
|
this.lblHMI_mascon_eb.Location = new Point(139, 51);
|
|
this.lblHMI_mascon_eb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_mascon_eb.Name = "lblHMI_mascon_eb";
|
|
this.lblHMI_mascon_eb.Size = new Size(60, 28);
|
|
this.lblHMI_mascon_eb.TabIndex = 275;
|
|
this.lblHMI_mascon_eb.Text = "마스콘\r\nEB";
|
|
this.lblHMI_mascon_eb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_mascon_eb.Click += this.lblHMI_Click;
|
|
this.lblHMI_mascon_eb.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_tcr.BackColor = Color.DarkGray;
|
|
this.lblHMI_tcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tcr.ForeColor = Color.White;
|
|
this.lblHMI_tcr.Location = new Point(77, 21);
|
|
this.lblHMI_tcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tcr.Name = "lblHMI_tcr";
|
|
this.lblHMI_tcr.Size = new Size(60, 28);
|
|
this.lblHMI_tcr.TabIndex = 144;
|
|
this.lblHMI_tcr.Text = "TCR";
|
|
this.lblHMI_tcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tcr.Click += this.lblHMI_Click;
|
|
this.lblHMI_tcr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_auto.BackColor = Color.DarkGray;
|
|
this.lblHMI_auto.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_auto.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_auto.ForeColor = Color.White;
|
|
this.lblHMI_auto.Location = new Point(201, 21);
|
|
this.lblHMI_auto.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_auto.Name = "lblHMI_auto";
|
|
this.lblHMI_auto.Size = new Size(60, 28);
|
|
this.lblHMI_auto.TabIndex = 159;
|
|
this.lblHMI_auto.Text = "AUTO";
|
|
this.lblHMI_auto.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_auto.Click += this.lblHMI_Click;
|
|
this.lblHMI_auto.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_mcs.BackColor = Color.DarkGray;
|
|
this.lblHMI_mcs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_mcs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_mcs.ForeColor = Color.White;
|
|
this.lblHMI_mcs.Location = new Point(263, 21);
|
|
this.lblHMI_mcs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_mcs.Name = "lblHMI_mcs";
|
|
this.lblHMI_mcs.Size = new Size(60, 28);
|
|
this.lblHMI_mcs.TabIndex = 160;
|
|
this.lblHMI_mcs.Text = "MCS";
|
|
this.lblHMI_mcs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_mcs.Click += this.lblHMI_Click;
|
|
this.lblHMI_mcs.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_door_open.BackColor = Color.DarkGray;
|
|
this.lblHMI_door_open.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_door_open.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_door_open.ForeColor = Color.White;
|
|
this.lblHMI_door_open.Location = new Point(15, 51);
|
|
this.lblHMI_door_open.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_door_open.Name = "lblHMI_door_open";
|
|
this.lblHMI_door_open.Size = new Size(60, 28);
|
|
this.lblHMI_door_open.TabIndex = 94;
|
|
this.lblHMI_door_open.Text = "Door OPEN";
|
|
this.lblHMI_door_open.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_door_open.Click += this.lblHMI_Click;
|
|
this.lblHMI_door_open.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_door_close.BackColor = Color.DarkGray;
|
|
this.lblHMI_door_close.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_door_close.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_door_close.ForeColor = Color.White;
|
|
this.lblHMI_door_close.Location = new Point(77, 51);
|
|
this.lblHMI_door_close.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_door_close.Name = "lblHMI_door_close";
|
|
this.lblHMI_door_close.Size = new Size(60, 28);
|
|
this.lblHMI_door_close.TabIndex = 95;
|
|
this.lblHMI_door_close.Text = "Door CLOSE";
|
|
this.lblHMI_door_close.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_door_close.Click += this.lblHMI_Click;
|
|
this.lblHMI_door_close.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_reversingrod_fwd.BackColor = Color.DarkGray;
|
|
this.lblHMI_reversingrod_fwd.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_reversingrod_fwd.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_reversingrod_fwd.ForeColor = Color.White;
|
|
this.lblHMI_reversingrod_fwd.Location = new Point(325, 51);
|
|
this.lblHMI_reversingrod_fwd.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_reversingrod_fwd.Name = "lblHMI_reversingrod_fwd";
|
|
this.lblHMI_reversingrod_fwd.Size = new Size(60, 28);
|
|
this.lblHMI_reversingrod_fwd.TabIndex = 96;
|
|
this.lblHMI_reversingrod_fwd.Text = "역전기\r\nFWD";
|
|
this.lblHMI_reversingrod_fwd.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_reversingrod_fwd.Click += this.lblHMI_Click;
|
|
this.lblHMI_reversingrod_fwd.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_reversingrod_neu.BackColor = Color.DarkGray;
|
|
this.lblHMI_reversingrod_neu.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_reversingrod_neu.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_reversingrod_neu.ForeColor = Color.White;
|
|
this.lblHMI_reversingrod_neu.Location = new Point(387, 51);
|
|
this.lblHMI_reversingrod_neu.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_reversingrod_neu.Name = "lblHMI_reversingrod_neu";
|
|
this.lblHMI_reversingrod_neu.Size = new Size(60, 28);
|
|
this.lblHMI_reversingrod_neu.TabIndex = 250;
|
|
this.lblHMI_reversingrod_neu.Text = "역전기\r\nNEU";
|
|
this.lblHMI_reversingrod_neu.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_reversingrod_neu.Click += this.lblHMI_Click;
|
|
this.lblHMI_reversingrod_neu.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_reversingrod_rvs.BackColor = Color.DarkGray;
|
|
this.lblHMI_reversingrod_rvs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_reversingrod_rvs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_reversingrod_rvs.ForeColor = Color.White;
|
|
this.lblHMI_reversingrod_rvs.Location = new Point(449, 51);
|
|
this.lblHMI_reversingrod_rvs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_reversingrod_rvs.Name = "lblHMI_reversingrod_rvs";
|
|
this.lblHMI_reversingrod_rvs.Size = new Size(60, 28);
|
|
this.lblHMI_reversingrod_rvs.TabIndex = 97;
|
|
this.lblHMI_reversingrod_rvs.Text = "역전기\r\nRVS";
|
|
this.lblHMI_reversingrod_rvs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_reversingrod_rvs.Click += this.lblHMI_Click;
|
|
this.lblHMI_reversingrod_rvs.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_psd_open.BackColor = Color.DarkGray;
|
|
this.lblHMI_psd_open.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_psd_open.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_psd_open.ForeColor = Color.White;
|
|
this.lblHMI_psd_open.Location = new Point(449, 21);
|
|
this.lblHMI_psd_open.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_psd_open.Name = "lblHMI_psd_open";
|
|
this.lblHMI_psd_open.Size = new Size(60, 28);
|
|
this.lblHMI_psd_open.TabIndex = 145;
|
|
this.lblHMI_psd_open.Text = "PSD OPEN";
|
|
this.lblHMI_psd_open.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_psd_open.Click += this.lblHMI_Click;
|
|
this.lblHMI_psd_open.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_psd_close.BackColor = Color.DarkGray;
|
|
this.lblHMI_psd_close.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_psd_close.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_psd_close.ForeColor = Color.White;
|
|
this.lblHMI_psd_close.Location = new Point(511, 21);
|
|
this.lblHMI_psd_close.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_psd_close.Name = "lblHMI_psd_close";
|
|
this.lblHMI_psd_close.Size = new Size(60, 28);
|
|
this.lblHMI_psd_close.TabIndex = 146;
|
|
this.lblHMI_psd_close.Text = "PSD CLOSE";
|
|
this.lblHMI_psd_close.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_psd_close.Click += this.lblHMI_Click;
|
|
this.lblHMI_psd_close.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_ador.BackColor = Color.DarkGray;
|
|
this.lblHMI_ador.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ador.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ador.ForeColor = Color.White;
|
|
this.lblHMI_ador.Location = new Point(7, 50);
|
|
this.lblHMI_ador.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ador.Name = "lblHMI_ador";
|
|
this.lblHMI_ador.Size = new Size(49, 28);
|
|
this.lblHMI_ador.TabIndex = 157;
|
|
this.lblHMI_ador.Text = "ADOR";
|
|
this.lblHMI_ador.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ador.Click += this.lblHMI_Click;
|
|
this.lblHMI_ador.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_TIME.BackColor = Color.Coral;
|
|
this.lblHMI_TIME.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_TIME.Font = new Font("Verdana", 12f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_TIME.ForeColor = Color.White;
|
|
this.lblHMI_TIME.Location = new Point(3, 33);
|
|
this.lblHMI_TIME.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_TIME.Name = "lblHMI_TIME";
|
|
this.lblHMI_TIME.Size = new Size(230, 30);
|
|
this.lblHMI_TIME.TabIndex = 83;
|
|
this.lblHMI_TIME.Text = "TIME";
|
|
this.lblHMI_TIME.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_TIME.Click += this.lblHMI_TIME_Click;
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_ebp);
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_zvr);
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_fsb);
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_ebm);
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_edl);
|
|
this.groupBox4.Controls.Add(this.lblHMI_do_edr);
|
|
this.groupBox4.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox4.Location = new Point(827, 214);
|
|
this.groupBox4.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox4.Name = "groupBox4";
|
|
this.groupBox4.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox4.Size = new Size(214, 87);
|
|
this.groupBox4.TabIndex = 276;
|
|
this.groupBox4.TabStop = false;
|
|
this.groupBox4.Text = "DO (ATC)";
|
|
this.lblHMI_do_ebp.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_ebp.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_ebp.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_ebp.ForeColor = Color.White;
|
|
this.lblHMI_do_ebp.Location = new Point(15, 21);
|
|
this.lblHMI_do_ebp.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_ebp.Name = "lblHMI_do_ebp";
|
|
this.lblHMI_do_ebp.Size = new Size(62, 28);
|
|
this.lblHMI_do_ebp.TabIndex = 142;
|
|
this.lblHMI_do_ebp.Text = "EB(+)";
|
|
this.lblHMI_do_ebp.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_ebp.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_ebp.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_do_zvr.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_zvr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_zvr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_zvr.ForeColor = Color.White;
|
|
this.lblHMI_do_zvr.Location = new Point(15, 52);
|
|
this.lblHMI_do_zvr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_zvr.Name = "lblHMI_do_zvr";
|
|
this.lblHMI_do_zvr.Size = new Size(62, 28);
|
|
this.lblHMI_do_zvr.TabIndex = 85;
|
|
this.lblHMI_do_zvr.Text = "ZVR";
|
|
this.lblHMI_do_zvr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_zvr.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_zvr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_do_fsb.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_fsb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_fsb.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_fsb.ForeColor = Color.White;
|
|
this.lblHMI_do_fsb.Location = new Point(145, 21);
|
|
this.lblHMI_do_fsb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_fsb.Name = "lblHMI_do_fsb";
|
|
this.lblHMI_do_fsb.Size = new Size(62, 28);
|
|
this.lblHMI_do_fsb.TabIndex = 88;
|
|
this.lblHMI_do_fsb.Text = "FSB";
|
|
this.lblHMI_do_fsb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_fsb.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_fsb.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_do_ebm.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_ebm.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_ebm.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_ebm.ForeColor = Color.White;
|
|
this.lblHMI_do_ebm.Location = new Point(80, 21);
|
|
this.lblHMI_do_ebm.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_ebm.Name = "lblHMI_do_ebm";
|
|
this.lblHMI_do_ebm.Size = new Size(62, 28);
|
|
this.lblHMI_do_ebm.TabIndex = 89;
|
|
this.lblHMI_do_ebm.Text = "EB(-)";
|
|
this.lblHMI_do_ebm.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_ebm.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_ebm.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_do_edl.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_edl.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_edl.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_edl.ForeColor = Color.White;
|
|
this.lblHMI_do_edl.Location = new Point(145, 52);
|
|
this.lblHMI_do_edl.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_edl.Name = "lblHMI_do_edl";
|
|
this.lblHMI_do_edl.Size = new Size(62, 28);
|
|
this.lblHMI_do_edl.TabIndex = 86;
|
|
this.lblHMI_do_edl.Text = "EDL";
|
|
this.lblHMI_do_edl.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_edl.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_edl.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_do_edr.BackColor = Color.DarkGray;
|
|
this.lblHMI_do_edr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_do_edr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_do_edr.ForeColor = Color.White;
|
|
this.lblHMI_do_edr.Location = new Point(80, 52);
|
|
this.lblHMI_do_edr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_do_edr.Name = "lblHMI_do_edr";
|
|
this.lblHMI_do_edr.Size = new Size(62, 28);
|
|
this.lblHMI_do_edr.TabIndex = 87;
|
|
this.lblHMI_do_edr.Text = "EDR";
|
|
this.lblHMI_do_edr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_do_edr.Click += this.lblHMI_Click;
|
|
this.lblHMI_do_edr.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_adc.BackColor = Color.DarkGray;
|
|
this.lblHMI_adc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_adc.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_adc.ForeColor = Color.White;
|
|
this.lblHMI_adc.Location = new Point(109, 20);
|
|
this.lblHMI_adc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_adc.Name = "lblHMI_adc";
|
|
this.lblHMI_adc.Size = new Size(49, 28);
|
|
this.lblHMI_adc.TabIndex = 120;
|
|
this.lblHMI_adc.Text = "ADC";
|
|
this.lblHMI_adc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_adc.Click += this.lblHMI_Click;
|
|
this.lblHMI_adc.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.groupBoxStatus.BackColor = Color.Transparent;
|
|
this.groupBoxStatus.BackgroundImageLayout = ImageLayout.None;
|
|
this.groupBoxStatus.Controls.Add(this.groupBox5);
|
|
this.groupBoxStatus.Controls.Add(this.gb_TWC);
|
|
this.groupBoxStatus.Controls.Add(this.gb_ATO);
|
|
this.groupBoxStatus.Controls.Add(this.groupBox6);
|
|
this.groupBoxStatus.Controls.Add(this.groupBox4);
|
|
this.groupBoxStatus.Controls.Add(this.lblHMI_TIME);
|
|
this.groupBoxStatus.Controls.Add(this.groupBox1);
|
|
this.groupBoxStatus.Controls.Add(this.groupBox2);
|
|
this.groupBoxStatus.Controls.Add(this.gb_ATC);
|
|
this.groupBoxStatus.Controls.Add(this.label22);
|
|
this.groupBoxStatus.Controls.Add(this.LVHMI_ERRMESS);
|
|
this.groupBoxStatus.Controls.Add(this.aquaGauge1);
|
|
this.groupBoxStatus.Font = new Font("맑은 고딕", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 129);
|
|
this.groupBoxStatus.ForeColor = Color.MidnightBlue;
|
|
this.groupBoxStatus.Location = new Point(11, -2);
|
|
this.groupBoxStatus.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBoxStatus.Name = "groupBoxStatus";
|
|
this.groupBoxStatus.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBoxStatus.Size = new Size(1049, 415);
|
|
this.groupBoxStatus.TabIndex = 88;
|
|
this.groupBoxStatus.TabStop = false;
|
|
this.groupBoxStatus.Text = "STATUS";
|
|
this.groupBox5.Controls.Add(this.lblHMI_start_enable);
|
|
this.groupBox5.Controls.Add(this.lblHMI_sel);
|
|
this.groupBox5.Controls.Add(this.lblHMI_trac_dr);
|
|
this.groupBox5.Controls.Add(this.lblHMI_trac_br);
|
|
this.groupBox5.Controls.Add(this.lblHMI_adc);
|
|
this.groupBox5.Controls.Add(this.lblHMI_ador);
|
|
this.groupBox5.Controls.Add(this.lblHMI_adol);
|
|
this.groupBox5.Controls.Add(this.lblHMI_osc);
|
|
this.groupBox5.Controls.Add(this.lblHMI_kur);
|
|
this.groupBox5.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox5.Location = new Point(627, 117);
|
|
this.groupBox5.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox5.Name = "groupBox5";
|
|
this.groupBox5.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox5.Size = new Size(221, 88);
|
|
this.groupBox5.TabIndex = 277;
|
|
this.groupBox5.TabStop = false;
|
|
this.groupBox5.Text = "RLY (ATO)";
|
|
this.lblHMI_start_enable.BackColor = Color.DarkGray;
|
|
this.lblHMI_start_enable.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_start_enable.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_start_enable.ForeColor = Color.White;
|
|
this.lblHMI_start_enable.Location = new Point(160, 50);
|
|
this.lblHMI_start_enable.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_start_enable.Name = "lblHMI_start_enable";
|
|
this.lblHMI_start_enable.Size = new Size(49, 28);
|
|
this.lblHMI_start_enable.TabIndex = 292;
|
|
this.lblHMI_start_enable.Text = "SEL";
|
|
this.lblHMI_start_enable.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_start_enable.Click += this.lblHMI_Click;
|
|
this.lblHMI_start_enable.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_sel.BackColor = Color.DarkGray;
|
|
this.lblHMI_sel.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_sel.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_sel.ForeColor = Color.White;
|
|
this.lblHMI_sel.Location = new Point(160, 50);
|
|
this.lblHMI_sel.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_sel.Name = "lblHMI_sel";
|
|
this.lblHMI_sel.Size = new Size(49, 28);
|
|
this.lblHMI_sel.TabIndex = 188;
|
|
this.lblHMI_sel.Text = "SEL";
|
|
this.lblHMI_sel.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_sel.Click += this.lblHMI_Click;
|
|
this.groupBox6.Controls.Add(this.lblHMI_tacho_dir_a);
|
|
this.groupBox6.Controls.Add(this.lblHMI_tacho_dir_b);
|
|
this.groupBox6.Controls.Add(this.lblHMI_sh_stop2);
|
|
this.groupBox6.Controls.Add(this.label1);
|
|
this.groupBox6.Controls.Add(this.lblHMI_ov_stop2);
|
|
this.groupBox6.Controls.Add(this.lblHMI_limit_drive);
|
|
this.groupBox6.Controls.Add(this.lblHMI_pre_brake);
|
|
this.groupBox6.Controls.Add(this.lblHMI_recovery);
|
|
this.groupBox6.Controls.Add(this.lblHMI_over_spd_warning);
|
|
this.groupBox6.Controls.Add(this.lblHMI_SWver);
|
|
this.groupBox6.Controls.Add(this.lblHMI_nomal);
|
|
this.groupBox6.Controls.Add(this.lblHMI_inching);
|
|
this.groupBox6.Controls.Add(this.lblHMI_IPDT);
|
|
this.groupBox6.Controls.Add(this.lblHMI_trac_cs);
|
|
this.groupBox6.Controls.Add(this.label15);
|
|
this.groupBox6.Controls.Add(this.label16);
|
|
this.groupBox6.Controls.Add(this.lblHMI_DRMOD);
|
|
this.groupBox6.Controls.Add(this.lblHMI_MPDT);
|
|
this.groupBox6.Controls.Add(this.lblHMI_system_active);
|
|
this.groupBox6.Controls.Add(this.label27);
|
|
this.groupBox6.Controls.Add(this.label2);
|
|
this.groupBox6.Controls.Add(this.lblHMI_TCMSDR);
|
|
this.groupBox6.Controls.Add(this.label13);
|
|
this.groupBox6.Controls.Add(this.label14);
|
|
this.groupBox6.Controls.Add(this.lblHMI_WHD1);
|
|
this.groupBox6.Controls.Add(this.lblHMI_WHD2);
|
|
this.groupBox6.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox6.Location = new Point(242, 302);
|
|
this.groupBox6.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox6.Name = "groupBox6";
|
|
this.groupBox6.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox6.Size = new Size(799, 103);
|
|
this.groupBox6.TabIndex = 278;
|
|
this.groupBox6.TabStop = false;
|
|
this.groupBox6.Text = "ETC";
|
|
this.lblHMI_tacho_dir_a.BackColor = Color.DarkGray;
|
|
this.lblHMI_tacho_dir_a.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tacho_dir_a.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tacho_dir_a.ForeColor = Color.White;
|
|
this.lblHMI_tacho_dir_a.Location = new Point(666, 60);
|
|
this.lblHMI_tacho_dir_a.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tacho_dir_a.Name = "lblHMI_tacho_dir_a";
|
|
this.lblHMI_tacho_dir_a.Size = new Size(60, 28);
|
|
this.lblHMI_tacho_dir_a.TabIndex = 116;
|
|
this.lblHMI_tacho_dir_a.Text = "TACHO\r\nDIR#A";
|
|
this.lblHMI_tacho_dir_a.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tacho_dir_a.Click += this.lblHMI_Click;
|
|
this.lblHMI_tacho_dir_a.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_tacho_dir_b.BackColor = Color.DarkGray;
|
|
this.lblHMI_tacho_dir_b.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_tacho_dir_b.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_tacho_dir_b.ForeColor = Color.White;
|
|
this.lblHMI_tacho_dir_b.Location = new Point(728, 60);
|
|
this.lblHMI_tacho_dir_b.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_tacho_dir_b.Name = "lblHMI_tacho_dir_b";
|
|
this.lblHMI_tacho_dir_b.Size = new Size(60, 28);
|
|
this.lblHMI_tacho_dir_b.TabIndex = 115;
|
|
this.lblHMI_tacho_dir_b.Text = "TACHO\r\nDIR#B";
|
|
this.lblHMI_tacho_dir_b.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_tacho_dir_b.Click += this.lblHMI_Click;
|
|
this.lblHMI_tacho_dir_b.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_sh_stop2.BackColor = Color.DarkGray;
|
|
this.lblHMI_sh_stop2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_sh_stop2.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_sh_stop2.ForeColor = Color.White;
|
|
this.lblHMI_sh_stop2.Location = new Point(542, 60);
|
|
this.lblHMI_sh_stop2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_sh_stop2.Name = "lblHMI_sh_stop2";
|
|
this.lblHMI_sh_stop2.Size = new Size(60, 28);
|
|
this.lblHMI_sh_stop2.TabIndex = 287;
|
|
this.lblHMI_sh_stop2.Text = "-70이상";
|
|
this.lblHMI_sh_stop2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_sh_stop2.Click += this.lblHMI_Click;
|
|
this.lblHMI_sh_stop2.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_ov_stop2.BackColor = Color.DarkGray;
|
|
this.lblHMI_ov_stop2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ov_stop2.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ov_stop2.ForeColor = Color.White;
|
|
this.lblHMI_ov_stop2.Location = new Point(604, 60);
|
|
this.lblHMI_ov_stop2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ov_stop2.Name = "lblHMI_ov_stop2";
|
|
this.lblHMI_ov_stop2.Size = new Size(60, 28);
|
|
this.lblHMI_ov_stop2.TabIndex = 286;
|
|
this.lblHMI_ov_stop2.Text = "+70이상";
|
|
this.lblHMI_ov_stop2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ov_stop2.Click += this.lblHMI_Click;
|
|
this.lblHMI_ov_stop2.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_limit_drive.BackColor = Color.DarkGray;
|
|
this.lblHMI_limit_drive.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_limit_drive.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_limit_drive.ForeColor = Color.White;
|
|
this.lblHMI_limit_drive.Location = new Point(480, 60);
|
|
this.lblHMI_limit_drive.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_limit_drive.Name = "lblHMI_limit_drive";
|
|
this.lblHMI_limit_drive.Size = new Size(60, 28);
|
|
this.lblHMI_limit_drive.TabIndex = 285;
|
|
this.lblHMI_limit_drive.Text = "가속제한";
|
|
this.lblHMI_limit_drive.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_limit_drive.Click += this.lblHMI_Click;
|
|
this.lblHMI_limit_drive.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_pre_brake.BackColor = Color.DarkGray;
|
|
this.lblHMI_pre_brake.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_pre_brake.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_pre_brake.ForeColor = Color.White;
|
|
this.lblHMI_pre_brake.Location = new Point(418, 60);
|
|
this.lblHMI_pre_brake.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_pre_brake.Name = "lblHMI_pre_brake";
|
|
this.lblHMI_pre_brake.Size = new Size(60, 28);
|
|
this.lblHMI_pre_brake.TabIndex = 284;
|
|
this.lblHMI_pre_brake.Text = "사전제동";
|
|
this.lblHMI_pre_brake.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_pre_brake.Click += this.lblHMI_Click;
|
|
this.lblHMI_pre_brake.MouseMove += this.lbl_MOUSEMOVE;
|
|
this.lblHMI_sh_stop1.BackColor = Color.DarkGray;
|
|
this.lblHMI_sh_stop1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_sh_stop1.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_sh_stop1.ForeColor = Color.White;
|
|
this.lblHMI_sh_stop1.Location = new Point(431, 497);
|
|
this.lblHMI_sh_stop1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_sh_stop1.Name = "lblHMI_sh_stop1";
|
|
this.lblHMI_sh_stop1.Size = new Size(57, 28);
|
|
this.lblHMI_sh_stop1.TabIndex = 289;
|
|
this.lblHMI_sh_stop1.Text = "-70이내";
|
|
this.lblHMI_sh_stop1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_sh_stop1.Visible = false;
|
|
this.lblHMI_sh_stop1.Click += this.lblHMI_Click;
|
|
this.lblHMI_ov_stop1.BackColor = Color.DarkGray;
|
|
this.lblHMI_ov_stop1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_ov_stop1.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_ov_stop1.ForeColor = Color.White;
|
|
this.lblHMI_ov_stop1.Location = new Point(431, 467);
|
|
this.lblHMI_ov_stop1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_ov_stop1.Name = "lblHMI_ov_stop1";
|
|
this.lblHMI_ov_stop1.Size = new Size(57, 28);
|
|
this.lblHMI_ov_stop1.TabIndex = 288;
|
|
this.lblHMI_ov_stop1.Text = "+70이내";
|
|
this.lblHMI_ov_stop1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_ov_stop1.Visible = false;
|
|
this.lblHMI_ov_stop1.Click += this.lblHMI_Click;
|
|
this.lblpg32d.BackColor = Color.DodgerBlue;
|
|
this.lblpg32d.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblpg32d.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.lblpg32d.ForeColor = Color.WhiteSmoke;
|
|
this.lblpg32d.Location = new Point(228, 467);
|
|
this.lblpg32d.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblpg32d.Name = "lblpg32d";
|
|
this.lblpg32d.Size = new Size(57, 28);
|
|
this.lblpg32d.TabIndex = 289;
|
|
this.lblpg32d.Text = "PG32 검지";
|
|
this.lblpg32d.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblpg32d.Visible = false;
|
|
this.lblHMI_PG32DIST.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
|
|
this.lblHMI_PG32DIST.BackColor = Color.DarkBlue;
|
|
this.lblHMI_PG32DIST.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_PG32DIST.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_PG32DIST.ForeColor = Color.White;
|
|
this.lblHMI_PG32DIST.Location = new Point(228, 498);
|
|
this.lblHMI_PG32DIST.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_PG32DIST.Name = "lblHMI_PG32DIST";
|
|
this.lblHMI_PG32DIST.Size = new Size(38, 0);
|
|
this.lblHMI_PG32DIST.TabIndex = 288;
|
|
this.lblHMI_PG32DIST.Text = "-";
|
|
this.lblHMI_PG32DIST.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_PG32DIST.Visible = false;
|
|
this.lblpg2d.BackColor = Color.DodgerBlue;
|
|
this.lblpg2d.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblpg2d.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.lblpg2d.ForeColor = Color.WhiteSmoke;
|
|
this.lblpg2d.Location = new Point(170, 467);
|
|
this.lblpg2d.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblpg2d.Name = "lblpg2d";
|
|
this.lblpg2d.Size = new Size(57, 28);
|
|
this.lblpg2d.TabIndex = 287;
|
|
this.lblpg2d.Text = "PG2 \r\n검지";
|
|
this.lblpg2d.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblpg2d.Visible = false;
|
|
this.lblHMI_PG2DIST.BackColor = Color.DarkBlue;
|
|
this.lblHMI_PG2DIST.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_PG2DIST.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_PG2DIST.ForeColor = Color.White;
|
|
this.lblHMI_PG2DIST.Location = new Point(170, 498);
|
|
this.lblHMI_PG2DIST.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_PG2DIST.Name = "lblHMI_PG2DIST";
|
|
this.lblHMI_PG2DIST.Size = new Size(57, 28);
|
|
this.lblHMI_PG2DIST.TabIndex = 286;
|
|
this.lblHMI_PG2DIST.Text = "-";
|
|
this.lblHMI_PG2DIST.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_PG2DIST.Visible = false;
|
|
this.lblpg1d.BackColor = Color.DodgerBlue;
|
|
this.lblpg1d.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblpg1d.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.lblpg1d.ForeColor = Color.WhiteSmoke;
|
|
this.lblpg1d.Location = new Point(111, 467);
|
|
this.lblpg1d.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblpg1d.Name = "lblpg1d";
|
|
this.lblpg1d.Size = new Size(57, 28);
|
|
this.lblpg1d.TabIndex = 285;
|
|
this.lblpg1d.Text = "PG1 \r\n검지";
|
|
this.lblpg1d.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblpg1d.Visible = false;
|
|
this.lblpg1d.Click += this.lbl123_Click;
|
|
this.lblHMI_PG1DIST.BackColor = Color.DarkBlue;
|
|
this.lblHMI_PG1DIST.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lblHMI_PG1DIST.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lblHMI_PG1DIST.ForeColor = Color.White;
|
|
this.lblHMI_PG1DIST.Location = new Point(111, 498);
|
|
this.lblHMI_PG1DIST.Margin = new Padding(2, 0, 2, 0);
|
|
this.lblHMI_PG1DIST.Name = "lblHMI_PG1DIST";
|
|
this.lblHMI_PG1DIST.Size = new Size(57, 28);
|
|
this.lblHMI_PG1DIST.TabIndex = 284;
|
|
this.lblHMI_PG1DIST.Text = "-";
|
|
this.lblHMI_PG1DIST.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lblHMI_PG1DIST.Visible = false;
|
|
this.labelName_gagam.BackColor = Color.DodgerBlue;
|
|
this.labelName_gagam.BorderStyle = BorderStyle.FixedSingle;
|
|
this.labelName_gagam.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.labelName_gagam.ForeColor = Color.WhiteSmoke;
|
|
this.labelName_gagam.Location = new Point(347, 466);
|
|
this.labelName_gagam.Margin = new Padding(2, 0, 2, 0);
|
|
this.labelName_gagam.Name = "labelName_gagam";
|
|
this.labelName_gagam.Size = new Size(57, 28);
|
|
this.labelName_gagam.TabIndex = 291;
|
|
this.labelName_gagam.Text = "가감속도";
|
|
this.labelName_gagam.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.labelName_gagam.Visible = false;
|
|
this.lbl_Deceleration.BackColor = Color.DarkBlue;
|
|
this.lbl_Deceleration.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lbl_Deceleration.Font = new Font("Verdana", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lbl_Deceleration.ForeColor = Color.White;
|
|
this.lbl_Deceleration.Location = new Point(347, 497);
|
|
this.lbl_Deceleration.Margin = new Padding(2, 0, 2, 0);
|
|
this.lbl_Deceleration.Name = "lbl_Deceleration";
|
|
this.lbl_Deceleration.Size = new Size(57, 28);
|
|
this.lbl_Deceleration.TabIndex = 290;
|
|
this.lbl_Deceleration.Text = "-";
|
|
this.lbl_Deceleration.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lbl_Deceleration.Visible = false;
|
|
this.btnPlus.Image = Resources.plus_;
|
|
this.btnPlus.Location = new Point(1395, 732);
|
|
this.btnPlus.Margin = new Padding(2, 3, 2, 3);
|
|
this.btnPlus.Name = "btnPlus";
|
|
this.btnPlus.Size = new Size(46, 50);
|
|
this.btnPlus.TabIndex = 282;
|
|
this.btnPlus.UseVisualStyleBackColor = true;
|
|
this.btnPlus.Click += this.btnPlus_Click;
|
|
this.btnMinus.Image = Resources.minus;
|
|
this.btnMinus.Location = new Point(1342, 732);
|
|
this.btnMinus.Margin = new Padding(2, 3, 2, 3);
|
|
this.btnMinus.Name = "btnMinus";
|
|
this.btnMinus.Size = new Size(46, 50);
|
|
this.btnMinus.TabIndex = 281;
|
|
this.btnMinus.UseVisualStyleBackColor = true;
|
|
this.btnMinus.Click += this.btnMinus_Click;
|
|
this.btnZoomPrevious.Image = Resources.zoom_last;
|
|
this.btnZoomPrevious.Location = new Point(1445, 732);
|
|
this.btnZoomPrevious.Margin = new Padding(2, 3, 2, 3);
|
|
this.btnZoomPrevious.Name = "btnZoomPrevious";
|
|
this.btnZoomPrevious.Size = new Size(46, 50);
|
|
this.btnZoomPrevious.TabIndex = 280;
|
|
this.btnZoomPrevious.UseVisualStyleBackColor = true;
|
|
this.btnZoomPrevious.Click += this.btnZoomPrevious_Click;
|
|
this.cb_TWCR.BackColor = SystemColors.HotTrack;
|
|
this.cb_TWCR.Font = new Font("나눔고딕", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 129);
|
|
this.cb_TWCR.ForeColor = Color.White;
|
|
this.cb_TWCR.FormattingEnabled = true;
|
|
this.cb_TWCR.Location = new Point(1344, 452);
|
|
this.cb_TWCR.Margin = new Padding(2, 3, 2, 3);
|
|
this.cb_TWCR.Name = "cb_TWCR";
|
|
this.cb_TWCR.Size = new Size(174, 25);
|
|
this.cb_TWCR.TabIndex = 283;
|
|
this.cb_TWCR.Visible = false;
|
|
this.cb_TWCR.SelectionChangeCommitted += this.cb_TWCR_SelectionChangeCommitted;
|
|
this.toolTip1.IsBalloon = true;
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_rvs);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_neu);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_fwd);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_mascondr);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_masconbr);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_masconeb);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_doorclose);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_dooropen);
|
|
this.groupBox3.Controls.Add(this.label24);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_fmc);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_yard);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_mcs);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_auto);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_fa);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_tcr);
|
|
this.groupBox3.Controls.Add(this.lb_VDIA_hcr);
|
|
this.groupBox3.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox3.Location = new Point(2, 6);
|
|
this.groupBox3.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox3.Name = "groupBox3";
|
|
this.groupBox3.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox3.Size = new Size(209, 151);
|
|
this.groupBox3.TabIndex = 276;
|
|
this.groupBox3.TabStop = false;
|
|
this.groupBox3.Text = "cVDI A";
|
|
this.lb_VDIA_rvs.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_rvs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_rvs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_rvs.ForeColor = Color.White;
|
|
this.lb_VDIA_rvs.Location = new Point(151, 110);
|
|
this.lb_VDIA_rvs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_rvs.Name = "lb_VDIA_rvs";
|
|
this.lb_VDIA_rvs.Size = new Size(48, 27);
|
|
this.lb_VDIA_rvs.TabIndex = 125;
|
|
this.lb_VDIA_rvs.Text = "RVS";
|
|
this.lb_VDIA_rvs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_neu.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_neu.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_neu.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_neu.ForeColor = Color.White;
|
|
this.lb_VDIA_neu.Location = new Point(102, 110);
|
|
this.lb_VDIA_neu.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_neu.Name = "lb_VDIA_neu";
|
|
this.lb_VDIA_neu.Size = new Size(48, 27);
|
|
this.lb_VDIA_neu.TabIndex = 124;
|
|
this.lb_VDIA_neu.Text = "NEU";
|
|
this.lb_VDIA_neu.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_fwd.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_fwd.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_fwd.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_fwd.ForeColor = Color.White;
|
|
this.lb_VDIA_fwd.Location = new Point(53, 110);
|
|
this.lb_VDIA_fwd.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_fwd.Name = "lb_VDIA_fwd";
|
|
this.lb_VDIA_fwd.Size = new Size(48, 27);
|
|
this.lb_VDIA_fwd.TabIndex = 123;
|
|
this.lb_VDIA_fwd.Text = "FWD";
|
|
this.lb_VDIA_fwd.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_mascondr.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_mascondr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_mascondr.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_mascondr.ForeColor = Color.White;
|
|
this.lb_VDIA_mascondr.Location = new Point(4, 110);
|
|
this.lb_VDIA_mascondr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_mascondr.Name = "lb_VDIA_mascondr";
|
|
this.lb_VDIA_mascondr.Size = new Size(48, 27);
|
|
this.lb_VDIA_mascondr.TabIndex = 122;
|
|
this.lb_VDIA_mascondr.Text = "MC\r\nDR";
|
|
this.lb_VDIA_mascondr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_masconbr.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_masconbr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_masconbr.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_masconbr.ForeColor = Color.White;
|
|
this.lb_VDIA_masconbr.Location = new Point(151, 81);
|
|
this.lb_VDIA_masconbr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_masconbr.Name = "lb_VDIA_masconbr";
|
|
this.lb_VDIA_masconbr.Size = new Size(48, 27);
|
|
this.lb_VDIA_masconbr.TabIndex = 121;
|
|
this.lb_VDIA_masconbr.Text = "MC\r\nBR";
|
|
this.lb_VDIA_masconbr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_masconeb.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_masconeb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_masconeb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_masconeb.ForeColor = Color.White;
|
|
this.lb_VDIA_masconeb.Location = new Point(102, 81);
|
|
this.lb_VDIA_masconeb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_masconeb.Name = "lb_VDIA_masconeb";
|
|
this.lb_VDIA_masconeb.Size = new Size(48, 27);
|
|
this.lb_VDIA_masconeb.TabIndex = 120;
|
|
this.lb_VDIA_masconeb.Text = "MC\r\nEB";
|
|
this.lb_VDIA_masconeb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_doorclose.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_doorclose.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_doorclose.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_doorclose.ForeColor = Color.White;
|
|
this.lb_VDIA_doorclose.Location = new Point(53, 81);
|
|
this.lb_VDIA_doorclose.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_doorclose.Name = "lb_VDIA_doorclose";
|
|
this.lb_VDIA_doorclose.Size = new Size(48, 27);
|
|
this.lb_VDIA_doorclose.TabIndex = 119;
|
|
this.lb_VDIA_doorclose.Text = "DOOR\r\nCLOSE";
|
|
this.lb_VDIA_doorclose.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_dooropen.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_dooropen.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_dooropen.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_dooropen.ForeColor = Color.White;
|
|
this.lb_VDIA_dooropen.Location = new Point(4, 81);
|
|
this.lb_VDIA_dooropen.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_dooropen.Name = "lb_VDIA_dooropen";
|
|
this.lb_VDIA_dooropen.Size = new Size(48, 27);
|
|
this.lb_VDIA_dooropen.TabIndex = 118;
|
|
this.lb_VDIA_dooropen.Text = "DOOR\r\nOPEN";
|
|
this.lb_VDIA_dooropen.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label24.BackColor = Color.DarkGray;
|
|
this.label24.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label24.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label24.ForeColor = Color.White;
|
|
this.label24.Location = new Point(151, 52);
|
|
this.label24.Margin = new Padding(2, 0, 2, 0);
|
|
this.label24.Name = "label24";
|
|
this.label24.Size = new Size(48, 27);
|
|
this.label24.TabIndex = 117;
|
|
this.label24.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_fmc.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_fmc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_fmc.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_fmc.ForeColor = Color.White;
|
|
this.lb_VDIA_fmc.Location = new Point(102, 52);
|
|
this.lb_VDIA_fmc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_fmc.Name = "lb_VDIA_fmc";
|
|
this.lb_VDIA_fmc.Size = new Size(48, 27);
|
|
this.lb_VDIA_fmc.TabIndex = 116;
|
|
this.lb_VDIA_fmc.Text = "FMC";
|
|
this.lb_VDIA_fmc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_yard.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_yard.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_yard.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_yard.ForeColor = Color.White;
|
|
this.lb_VDIA_yard.Location = new Point(53, 52);
|
|
this.lb_VDIA_yard.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_yard.Name = "lb_VDIA_yard";
|
|
this.lb_VDIA_yard.Size = new Size(48, 27);
|
|
this.lb_VDIA_yard.TabIndex = 115;
|
|
this.lb_VDIA_yard.Text = "YARD";
|
|
this.lb_VDIA_yard.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_mcs.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_mcs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_mcs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_mcs.ForeColor = Color.White;
|
|
this.lb_VDIA_mcs.Location = new Point(4, 52);
|
|
this.lb_VDIA_mcs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_mcs.Name = "lb_VDIA_mcs";
|
|
this.lb_VDIA_mcs.Size = new Size(48, 27);
|
|
this.lb_VDIA_mcs.TabIndex = 114;
|
|
this.lb_VDIA_mcs.Text = "MCS";
|
|
this.lb_VDIA_mcs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_auto.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_auto.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_auto.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_auto.ForeColor = Color.White;
|
|
this.lb_VDIA_auto.Location = new Point(151, 23);
|
|
this.lb_VDIA_auto.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_auto.Name = "lb_VDIA_auto";
|
|
this.lb_VDIA_auto.Size = new Size(48, 27);
|
|
this.lb_VDIA_auto.TabIndex = 113;
|
|
this.lb_VDIA_auto.Text = "AUTO";
|
|
this.lb_VDIA_auto.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_fa.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_fa.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_fa.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_fa.ForeColor = Color.White;
|
|
this.lb_VDIA_fa.Location = new Point(102, 23);
|
|
this.lb_VDIA_fa.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_fa.Name = "lb_VDIA_fa";
|
|
this.lb_VDIA_fa.Size = new Size(48, 27);
|
|
this.lb_VDIA_fa.TabIndex = 112;
|
|
this.lb_VDIA_fa.Text = "FA";
|
|
this.lb_VDIA_fa.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_tcr.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_tcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_tcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_tcr.ForeColor = Color.White;
|
|
this.lb_VDIA_tcr.Location = new Point(53, 23);
|
|
this.lb_VDIA_tcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_tcr.Name = "lb_VDIA_tcr";
|
|
this.lb_VDIA_tcr.Size = new Size(48, 27);
|
|
this.lb_VDIA_tcr.TabIndex = 111;
|
|
this.lb_VDIA_tcr.Text = "TCR";
|
|
this.lb_VDIA_tcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIA_hcr.BackColor = Color.DarkGray;
|
|
this.lb_VDIA_hcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIA_hcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIA_hcr.ForeColor = Color.White;
|
|
this.lb_VDIA_hcr.Location = new Point(4, 23);
|
|
this.lb_VDIA_hcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIA_hcr.Name = "lb_VDIA_hcr";
|
|
this.lb_VDIA_hcr.Size = new Size(48, 27);
|
|
this.lb_VDIA_hcr.TabIndex = 110;
|
|
this.lb_VDIA_hcr.Text = "HCR";
|
|
this.lb_VDIA_hcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.panel_cVDIO.Controls.Add(this.groupBox12);
|
|
this.panel_cVDIO.Controls.Add(this.groupBox11);
|
|
this.panel_cVDIO.Controls.Add(this.groupBox10);
|
|
this.panel_cVDIO.Controls.Add(this.groupBox9);
|
|
this.panel_cVDIO.Controls.Add(this.groupBox7);
|
|
this.panel_cVDIO.Controls.Add(this.groupBox3);
|
|
this.panel_cVDIO.Location = new Point(1064, 2);
|
|
this.panel_cVDIO.Name = "panel_cVDIO";
|
|
this.panel_cVDIO.Size = new Size(460, 411);
|
|
this.panel_cVDIO.TabIndex = 292;
|
|
this.panel_cVDIO.Visible = false;
|
|
this.groupBox12.Controls.Add(this.label89);
|
|
this.groupBox12.Controls.Add(this.label90);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_edl);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_edr);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_zvr);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_fsb);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_ebm);
|
|
this.groupBox12.Controls.Add(this.lb_VDOB_ebp);
|
|
this.groupBox12.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox12.Location = new Point(215, 314);
|
|
this.groupBox12.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox12.Name = "groupBox12";
|
|
this.groupBox12.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox12.Size = new Size(209, 94);
|
|
this.groupBox12.TabIndex = 279;
|
|
this.groupBox12.TabStop = false;
|
|
this.groupBox12.Text = "cVDO B";
|
|
this.label89.BackColor = Color.DarkGray;
|
|
this.label89.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label89.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label89.ForeColor = Color.White;
|
|
this.label89.Location = new Point(151, 52);
|
|
this.label89.Margin = new Padding(2, 0, 2, 0);
|
|
this.label89.Name = "label89";
|
|
this.label89.Size = new Size(48, 27);
|
|
this.label89.TabIndex = 117;
|
|
this.label89.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label90.BackColor = Color.DarkGray;
|
|
this.label90.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label90.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label90.ForeColor = Color.White;
|
|
this.label90.Location = new Point(102, 52);
|
|
this.label90.Margin = new Padding(2, 0, 2, 0);
|
|
this.label90.Name = "label90";
|
|
this.label90.Size = new Size(48, 27);
|
|
this.label90.TabIndex = 116;
|
|
this.label90.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_edl.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_edl.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_edl.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_edl.ForeColor = Color.White;
|
|
this.lb_VDOB_edl.Location = new Point(53, 52);
|
|
this.lb_VDOB_edl.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_edl.Name = "lb_VDOB_edl";
|
|
this.lb_VDOB_edl.Size = new Size(48, 27);
|
|
this.lb_VDOB_edl.TabIndex = 115;
|
|
this.lb_VDOB_edl.Text = "EDL";
|
|
this.lb_VDOB_edl.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_edr.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_edr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_edr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_edr.ForeColor = Color.White;
|
|
this.lb_VDOB_edr.Location = new Point(4, 52);
|
|
this.lb_VDOB_edr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_edr.Name = "lb_VDOB_edr";
|
|
this.lb_VDOB_edr.Size = new Size(48, 27);
|
|
this.lb_VDOB_edr.TabIndex = 114;
|
|
this.lb_VDOB_edr.Text = "EDR";
|
|
this.lb_VDOB_edr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_zvr.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_zvr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_zvr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_zvr.ForeColor = Color.White;
|
|
this.lb_VDOB_zvr.Location = new Point(151, 23);
|
|
this.lb_VDOB_zvr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_zvr.Name = "lb_VDOB_zvr";
|
|
this.lb_VDOB_zvr.Size = new Size(48, 27);
|
|
this.lb_VDOB_zvr.TabIndex = 113;
|
|
this.lb_VDOB_zvr.Text = "ZVR";
|
|
this.lb_VDOB_zvr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_fsb.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_fsb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_fsb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_fsb.ForeColor = Color.White;
|
|
this.lb_VDOB_fsb.Location = new Point(102, 23);
|
|
this.lb_VDOB_fsb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_fsb.Name = "lb_VDOB_fsb";
|
|
this.lb_VDOB_fsb.Size = new Size(48, 27);
|
|
this.lb_VDOB_fsb.TabIndex = 112;
|
|
this.lb_VDOB_fsb.Text = "FSB";
|
|
this.lb_VDOB_fsb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_ebm.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_ebm.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_ebm.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_ebm.ForeColor = Color.White;
|
|
this.lb_VDOB_ebm.Location = new Point(53, 23);
|
|
this.lb_VDOB_ebm.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_ebm.Name = "lb_VDOB_ebm";
|
|
this.lb_VDOB_ebm.Size = new Size(48, 27);
|
|
this.lb_VDOB_ebm.TabIndex = 111;
|
|
this.lb_VDOB_ebm.Text = "EB(-)";
|
|
this.lb_VDOB_ebm.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOB_ebp.BackColor = Color.DarkGray;
|
|
this.lb_VDOB_ebp.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOB_ebp.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOB_ebp.ForeColor = Color.White;
|
|
this.lb_VDOB_ebp.Location = new Point(4, 23);
|
|
this.lb_VDOB_ebp.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOB_ebp.Name = "lb_VDOB_ebp";
|
|
this.lb_VDOB_ebp.Size = new Size(48, 27);
|
|
this.lb_VDOB_ebp.TabIndex = 110;
|
|
this.lb_VDOB_ebp.Text = "EB(+)";
|
|
this.lb_VDOB_ebp.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.groupBox11.Controls.Add(this.label97);
|
|
this.groupBox11.Controls.Add(this.label98);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_edl);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_edr);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_zvr);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_fsb);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_ebm);
|
|
this.groupBox11.Controls.Add(this.lb_VDOA_ebp);
|
|
this.groupBox11.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox11.Location = new Point(2, 314);
|
|
this.groupBox11.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox11.Name = "groupBox11";
|
|
this.groupBox11.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox11.Size = new Size(209, 94);
|
|
this.groupBox11.TabIndex = 278;
|
|
this.groupBox11.TabStop = false;
|
|
this.groupBox11.Text = "cVDO A";
|
|
this.label97.BackColor = Color.DarkGray;
|
|
this.label97.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label97.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label97.ForeColor = Color.White;
|
|
this.label97.Location = new Point(151, 52);
|
|
this.label97.Margin = new Padding(2, 0, 2, 0);
|
|
this.label97.Name = "label97";
|
|
this.label97.Size = new Size(48, 27);
|
|
this.label97.TabIndex = 117;
|
|
this.label97.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label98.BackColor = Color.DarkGray;
|
|
this.label98.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label98.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label98.ForeColor = Color.White;
|
|
this.label98.Location = new Point(102, 52);
|
|
this.label98.Margin = new Padding(2, 0, 2, 0);
|
|
this.label98.Name = "label98";
|
|
this.label98.Size = new Size(48, 27);
|
|
this.label98.TabIndex = 116;
|
|
this.label98.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_edl.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_edl.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_edl.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_edl.ForeColor = Color.White;
|
|
this.lb_VDOA_edl.Location = new Point(53, 52);
|
|
this.lb_VDOA_edl.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_edl.Name = "lb_VDOA_edl";
|
|
this.lb_VDOA_edl.Size = new Size(48, 27);
|
|
this.lb_VDOA_edl.TabIndex = 115;
|
|
this.lb_VDOA_edl.Text = "EDL";
|
|
this.lb_VDOA_edl.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_edr.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_edr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_edr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_edr.ForeColor = Color.White;
|
|
this.lb_VDOA_edr.Location = new Point(4, 52);
|
|
this.lb_VDOA_edr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_edr.Name = "lb_VDOA_edr";
|
|
this.lb_VDOA_edr.Size = new Size(48, 27);
|
|
this.lb_VDOA_edr.TabIndex = 114;
|
|
this.lb_VDOA_edr.Text = "EDR";
|
|
this.lb_VDOA_edr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_zvr.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_zvr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_zvr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_zvr.ForeColor = Color.White;
|
|
this.lb_VDOA_zvr.Location = new Point(151, 23);
|
|
this.lb_VDOA_zvr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_zvr.Name = "lb_VDOA_zvr";
|
|
this.lb_VDOA_zvr.Size = new Size(48, 27);
|
|
this.lb_VDOA_zvr.TabIndex = 113;
|
|
this.lb_VDOA_zvr.Text = "ZVR";
|
|
this.lb_VDOA_zvr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_fsb.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_fsb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_fsb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_fsb.ForeColor = Color.White;
|
|
this.lb_VDOA_fsb.Location = new Point(102, 23);
|
|
this.lb_VDOA_fsb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_fsb.Name = "lb_VDOA_fsb";
|
|
this.lb_VDOA_fsb.Size = new Size(48, 27);
|
|
this.lb_VDOA_fsb.TabIndex = 112;
|
|
this.lb_VDOA_fsb.Text = "FSB";
|
|
this.lb_VDOA_fsb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_ebm.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_ebm.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_ebm.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_ebm.ForeColor = Color.White;
|
|
this.lb_VDOA_ebm.Location = new Point(53, 23);
|
|
this.lb_VDOA_ebm.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_ebm.Name = "lb_VDOA_ebm";
|
|
this.lb_VDOA_ebm.Size = new Size(48, 27);
|
|
this.lb_VDOA_ebm.TabIndex = 111;
|
|
this.lb_VDOA_ebm.Text = "EB(-)";
|
|
this.lb_VDOA_ebm.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDOA_ebp.BackColor = Color.DarkGray;
|
|
this.lb_VDOA_ebp.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDOA_ebp.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDOA_ebp.ForeColor = Color.White;
|
|
this.lb_VDOA_ebp.Location = new Point(4, 23);
|
|
this.lb_VDOA_ebp.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDOA_ebp.Name = "lb_VDOA_ebp";
|
|
this.lb_VDOA_ebp.Size = new Size(48, 27);
|
|
this.lb_VDOA_ebp.TabIndex = 110;
|
|
this.lb_VDOA_ebp.Text = "EB(+)";
|
|
this.lb_VDOA_ebp.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.groupBox10.Controls.Add(this.lb_VDID_tc2);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_tc1);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_edlfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_edrfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_zvrfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_fsbfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_ebmfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_ebpfb);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_unit1);
|
|
this.groupBox10.Controls.Add(this.label82);
|
|
this.groupBox10.Controls.Add(this.label83);
|
|
this.groupBox10.Controls.Add(this.label84);
|
|
this.groupBox10.Controls.Add(this.label85);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_startbtn);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_psdclose);
|
|
this.groupBox10.Controls.Add(this.lb_VDID_psdopen);
|
|
this.groupBox10.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox10.Location = new Point(215, 159);
|
|
this.groupBox10.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox10.Name = "groupBox10";
|
|
this.groupBox10.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox10.Size = new Size(209, 151);
|
|
this.groupBox10.TabIndex = 278;
|
|
this.groupBox10.TabStop = false;
|
|
this.groupBox10.Text = "cVDI D";
|
|
this.lb_VDID_tc2.BackColor = Color.DarkGray;
|
|
this.lb_VDID_tc2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_tc2.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_tc2.ForeColor = Color.White;
|
|
this.lb_VDID_tc2.Location = new Point(151, 110);
|
|
this.lb_VDID_tc2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_tc2.Name = "lb_VDID_tc2";
|
|
this.lb_VDID_tc2.Size = new Size(48, 27);
|
|
this.lb_VDID_tc2.TabIndex = 125;
|
|
this.lb_VDID_tc2.Text = "TC2";
|
|
this.lb_VDID_tc2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_tc1.BackColor = Color.DarkGray;
|
|
this.lb_VDID_tc1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_tc1.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_tc1.ForeColor = Color.White;
|
|
this.lb_VDID_tc1.Location = new Point(102, 110);
|
|
this.lb_VDID_tc1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_tc1.Name = "lb_VDID_tc1";
|
|
this.lb_VDID_tc1.Size = new Size(48, 27);
|
|
this.lb_VDID_tc1.TabIndex = 124;
|
|
this.lb_VDID_tc1.Text = "TC1";
|
|
this.lb_VDID_tc1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_edlfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_edlfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_edlfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_edlfb.ForeColor = Color.White;
|
|
this.lb_VDID_edlfb.Location = new Point(53, 110);
|
|
this.lb_VDID_edlfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_edlfb.Name = "lb_VDID_edlfb";
|
|
this.lb_VDID_edlfb.Size = new Size(48, 27);
|
|
this.lb_VDID_edlfb.TabIndex = 123;
|
|
this.lb_VDID_edlfb.Text = "EDL\r\nFB";
|
|
this.lb_VDID_edlfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_edrfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_edrfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_edrfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_edrfb.ForeColor = Color.White;
|
|
this.lb_VDID_edrfb.Location = new Point(4, 110);
|
|
this.lb_VDID_edrfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_edrfb.Name = "lb_VDID_edrfb";
|
|
this.lb_VDID_edrfb.Size = new Size(48, 27);
|
|
this.lb_VDID_edrfb.TabIndex = 122;
|
|
this.lb_VDID_edrfb.Text = "EDR\r\nFB";
|
|
this.lb_VDID_edrfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_zvrfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_zvrfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_zvrfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_zvrfb.ForeColor = Color.White;
|
|
this.lb_VDID_zvrfb.Location = new Point(151, 81);
|
|
this.lb_VDID_zvrfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_zvrfb.Name = "lb_VDID_zvrfb";
|
|
this.lb_VDID_zvrfb.Size = new Size(48, 27);
|
|
this.lb_VDID_zvrfb.TabIndex = 121;
|
|
this.lb_VDID_zvrfb.Text = "ZVR\r\nFB";
|
|
this.lb_VDID_zvrfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_fsbfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_fsbfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_fsbfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_fsbfb.ForeColor = Color.White;
|
|
this.lb_VDID_fsbfb.Location = new Point(102, 81);
|
|
this.lb_VDID_fsbfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_fsbfb.Name = "lb_VDID_fsbfb";
|
|
this.lb_VDID_fsbfb.Size = new Size(48, 27);
|
|
this.lb_VDID_fsbfb.TabIndex = 120;
|
|
this.lb_VDID_fsbfb.Text = "FSB\r\nFB";
|
|
this.lb_VDID_fsbfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_ebmfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_ebmfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_ebmfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_ebmfb.ForeColor = Color.White;
|
|
this.lb_VDID_ebmfb.Location = new Point(53, 81);
|
|
this.lb_VDID_ebmfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_ebmfb.Name = "lb_VDID_ebmfb";
|
|
this.lb_VDID_ebmfb.Size = new Size(48, 27);
|
|
this.lb_VDID_ebmfb.TabIndex = 119;
|
|
this.lb_VDID_ebmfb.Text = "EB(-)\r\nFB\r\n";
|
|
this.lb_VDID_ebmfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_ebpfb.BackColor = Color.DarkGray;
|
|
this.lb_VDID_ebpfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_ebpfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_ebpfb.ForeColor = Color.White;
|
|
this.lb_VDID_ebpfb.Location = new Point(4, 81);
|
|
this.lb_VDID_ebpfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_ebpfb.Name = "lb_VDID_ebpfb";
|
|
this.lb_VDID_ebpfb.Size = new Size(48, 27);
|
|
this.lb_VDID_ebpfb.TabIndex = 118;
|
|
this.lb_VDID_ebpfb.Text = "EB(+)\r\nFB";
|
|
this.lb_VDID_ebpfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_unit1.BackColor = Color.DarkGray;
|
|
this.lb_VDID_unit1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_unit1.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_unit1.ForeColor = Color.White;
|
|
this.lb_VDID_unit1.Location = new Point(151, 52);
|
|
this.lb_VDID_unit1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_unit1.Name = "lb_VDID_unit1";
|
|
this.lb_VDID_unit1.Size = new Size(48, 27);
|
|
this.lb_VDID_unit1.TabIndex = 117;
|
|
this.lb_VDID_unit1.Text = "UNIT1";
|
|
this.lb_VDID_unit1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label82.BackColor = Color.DarkGray;
|
|
this.label82.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label82.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label82.ForeColor = Color.White;
|
|
this.label82.Location = new Point(102, 52);
|
|
this.label82.Margin = new Padding(2, 0, 2, 0);
|
|
this.label82.Name = "label82";
|
|
this.label82.Size = new Size(48, 27);
|
|
this.label82.TabIndex = 116;
|
|
this.label82.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label83.BackColor = Color.DarkGray;
|
|
this.label83.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label83.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label83.ForeColor = Color.White;
|
|
this.label83.Location = new Point(53, 52);
|
|
this.label83.Margin = new Padding(2, 0, 2, 0);
|
|
this.label83.Name = "label83";
|
|
this.label83.Size = new Size(48, 27);
|
|
this.label83.TabIndex = 115;
|
|
this.label83.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label84.BackColor = Color.DarkGray;
|
|
this.label84.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label84.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label84.ForeColor = Color.White;
|
|
this.label84.Location = new Point(4, 52);
|
|
this.label84.Margin = new Padding(2, 0, 2, 0);
|
|
this.label84.Name = "label84";
|
|
this.label84.Size = new Size(48, 27);
|
|
this.label84.TabIndex = 114;
|
|
this.label84.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label85.BackColor = Color.DarkGray;
|
|
this.label85.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label85.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label85.ForeColor = Color.White;
|
|
this.label85.Location = new Point(151, 23);
|
|
this.label85.Margin = new Padding(2, 0, 2, 0);
|
|
this.label85.Name = "label85";
|
|
this.label85.Size = new Size(48, 27);
|
|
this.label85.TabIndex = 113;
|
|
this.label85.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_startbtn.BackColor = Color.DarkGray;
|
|
this.lb_VDID_startbtn.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_startbtn.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_startbtn.ForeColor = Color.White;
|
|
this.lb_VDID_startbtn.Location = new Point(102, 23);
|
|
this.lb_VDID_startbtn.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_startbtn.Name = "lb_VDID_startbtn";
|
|
this.lb_VDID_startbtn.Size = new Size(48, 27);
|
|
this.lb_VDID_startbtn.TabIndex = 112;
|
|
this.lb_VDID_startbtn.Text = "START\r\nBTN";
|
|
this.lb_VDID_startbtn.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_psdclose.BackColor = Color.DarkGray;
|
|
this.lb_VDID_psdclose.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_psdclose.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_psdclose.ForeColor = Color.White;
|
|
this.lb_VDID_psdclose.Location = new Point(53, 23);
|
|
this.lb_VDID_psdclose.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_psdclose.Name = "lb_VDID_psdclose";
|
|
this.lb_VDID_psdclose.Size = new Size(48, 27);
|
|
this.lb_VDID_psdclose.TabIndex = 111;
|
|
this.lb_VDID_psdclose.Text = "PSD\r\nCLOSE";
|
|
this.lb_VDID_psdclose.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDID_psdopen.BackColor = Color.DarkGray;
|
|
this.lb_VDID_psdopen.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDID_psdopen.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDID_psdopen.ForeColor = Color.White;
|
|
this.lb_VDID_psdopen.Location = new Point(4, 23);
|
|
this.lb_VDID_psdopen.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDID_psdopen.Name = "lb_VDID_psdopen";
|
|
this.lb_VDID_psdopen.Size = new Size(48, 27);
|
|
this.lb_VDID_psdopen.TabIndex = 110;
|
|
this.lb_VDID_psdopen.Text = "PSD\r\nOPEN\r\n";
|
|
this.lb_VDID_psdopen.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_tc2);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_tc1);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_edlfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_edrfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_zvrfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_fsbfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_ebmfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_ebpfb);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_unit1);
|
|
this.groupBox9.Controls.Add(this.label66);
|
|
this.groupBox9.Controls.Add(this.label67);
|
|
this.groupBox9.Controls.Add(this.label68);
|
|
this.groupBox9.Controls.Add(this.label69);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_startbtn);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_psdclose);
|
|
this.groupBox9.Controls.Add(this.lb_VDIC_psdopen);
|
|
this.groupBox9.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox9.Location = new Point(2, 159);
|
|
this.groupBox9.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox9.Name = "groupBox9";
|
|
this.groupBox9.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox9.Size = new Size(209, 151);
|
|
this.groupBox9.TabIndex = 277;
|
|
this.groupBox9.TabStop = false;
|
|
this.groupBox9.Text = "cVDI C";
|
|
this.lb_VDIC_tc2.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_tc2.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_tc2.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_tc2.ForeColor = Color.White;
|
|
this.lb_VDIC_tc2.Location = new Point(151, 110);
|
|
this.lb_VDIC_tc2.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_tc2.Name = "lb_VDIC_tc2";
|
|
this.lb_VDIC_tc2.Size = new Size(48, 27);
|
|
this.lb_VDIC_tc2.TabIndex = 125;
|
|
this.lb_VDIC_tc2.Text = "TC2";
|
|
this.lb_VDIC_tc2.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_tc1.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_tc1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_tc1.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_tc1.ForeColor = Color.White;
|
|
this.lb_VDIC_tc1.Location = new Point(102, 110);
|
|
this.lb_VDIC_tc1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_tc1.Name = "lb_VDIC_tc1";
|
|
this.lb_VDIC_tc1.Size = new Size(48, 27);
|
|
this.lb_VDIC_tc1.TabIndex = 124;
|
|
this.lb_VDIC_tc1.Text = "TC1";
|
|
this.lb_VDIC_tc1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_edlfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_edlfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_edlfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_edlfb.ForeColor = Color.White;
|
|
this.lb_VDIC_edlfb.Location = new Point(53, 110);
|
|
this.lb_VDIC_edlfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_edlfb.Name = "lb_VDIC_edlfb";
|
|
this.lb_VDIC_edlfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_edlfb.TabIndex = 123;
|
|
this.lb_VDIC_edlfb.Text = "EDL\r\nFB";
|
|
this.lb_VDIC_edlfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_edrfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_edrfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_edrfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_edrfb.ForeColor = Color.White;
|
|
this.lb_VDIC_edrfb.Location = new Point(4, 110);
|
|
this.lb_VDIC_edrfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_edrfb.Name = "lb_VDIC_edrfb";
|
|
this.lb_VDIC_edrfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_edrfb.TabIndex = 122;
|
|
this.lb_VDIC_edrfb.Text = "EDR\r\nFB";
|
|
this.lb_VDIC_edrfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_zvrfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_zvrfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_zvrfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_zvrfb.ForeColor = Color.White;
|
|
this.lb_VDIC_zvrfb.Location = new Point(151, 81);
|
|
this.lb_VDIC_zvrfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_zvrfb.Name = "lb_VDIC_zvrfb";
|
|
this.lb_VDIC_zvrfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_zvrfb.TabIndex = 121;
|
|
this.lb_VDIC_zvrfb.Text = "ZVR\r\nFB";
|
|
this.lb_VDIC_zvrfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_fsbfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_fsbfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_fsbfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_fsbfb.ForeColor = Color.White;
|
|
this.lb_VDIC_fsbfb.Location = new Point(102, 81);
|
|
this.lb_VDIC_fsbfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_fsbfb.Name = "lb_VDIC_fsbfb";
|
|
this.lb_VDIC_fsbfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_fsbfb.TabIndex = 120;
|
|
this.lb_VDIC_fsbfb.Text = "FSB\r\nFB";
|
|
this.lb_VDIC_fsbfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_ebmfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_ebmfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_ebmfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_ebmfb.ForeColor = Color.White;
|
|
this.lb_VDIC_ebmfb.Location = new Point(53, 81);
|
|
this.lb_VDIC_ebmfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_ebmfb.Name = "lb_VDIC_ebmfb";
|
|
this.lb_VDIC_ebmfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_ebmfb.TabIndex = 119;
|
|
this.lb_VDIC_ebmfb.Text = "EB(-)\r\nFB\r\n";
|
|
this.lb_VDIC_ebmfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_ebpfb.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_ebpfb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_ebpfb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_ebpfb.ForeColor = Color.White;
|
|
this.lb_VDIC_ebpfb.Location = new Point(4, 81);
|
|
this.lb_VDIC_ebpfb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_ebpfb.Name = "lb_VDIC_ebpfb";
|
|
this.lb_VDIC_ebpfb.Size = new Size(48, 27);
|
|
this.lb_VDIC_ebpfb.TabIndex = 118;
|
|
this.lb_VDIC_ebpfb.Text = "EB(+)\r\nFB";
|
|
this.lb_VDIC_ebpfb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_unit1.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_unit1.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_unit1.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_unit1.ForeColor = Color.White;
|
|
this.lb_VDIC_unit1.Location = new Point(151, 52);
|
|
this.lb_VDIC_unit1.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_unit1.Name = "lb_VDIC_unit1";
|
|
this.lb_VDIC_unit1.Size = new Size(48, 27);
|
|
this.lb_VDIC_unit1.TabIndex = 117;
|
|
this.lb_VDIC_unit1.Text = "UNIT1";
|
|
this.lb_VDIC_unit1.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label66.BackColor = Color.DarkGray;
|
|
this.label66.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label66.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label66.ForeColor = Color.White;
|
|
this.label66.Location = new Point(102, 52);
|
|
this.label66.Margin = new Padding(2, 0, 2, 0);
|
|
this.label66.Name = "label66";
|
|
this.label66.Size = new Size(48, 27);
|
|
this.label66.TabIndex = 116;
|
|
this.label66.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label67.BackColor = Color.DarkGray;
|
|
this.label67.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label67.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label67.ForeColor = Color.White;
|
|
this.label67.Location = new Point(53, 52);
|
|
this.label67.Margin = new Padding(2, 0, 2, 0);
|
|
this.label67.Name = "label67";
|
|
this.label67.Size = new Size(48, 27);
|
|
this.label67.TabIndex = 115;
|
|
this.label67.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label68.BackColor = Color.DarkGray;
|
|
this.label68.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label68.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label68.ForeColor = Color.White;
|
|
this.label68.Location = new Point(4, 52);
|
|
this.label68.Margin = new Padding(2, 0, 2, 0);
|
|
this.label68.Name = "label68";
|
|
this.label68.Size = new Size(48, 27);
|
|
this.label68.TabIndex = 114;
|
|
this.label68.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label69.BackColor = Color.DarkGray;
|
|
this.label69.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label69.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label69.ForeColor = Color.White;
|
|
this.label69.Location = new Point(151, 23);
|
|
this.label69.Margin = new Padding(2, 0, 2, 0);
|
|
this.label69.Name = "label69";
|
|
this.label69.Size = new Size(48, 27);
|
|
this.label69.TabIndex = 113;
|
|
this.label69.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_startbtn.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_startbtn.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_startbtn.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_startbtn.ForeColor = Color.White;
|
|
this.lb_VDIC_startbtn.Location = new Point(102, 23);
|
|
this.lb_VDIC_startbtn.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_startbtn.Name = "lb_VDIC_startbtn";
|
|
this.lb_VDIC_startbtn.Size = new Size(48, 27);
|
|
this.lb_VDIC_startbtn.TabIndex = 112;
|
|
this.lb_VDIC_startbtn.Text = "START\r\nBTN";
|
|
this.lb_VDIC_startbtn.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_psdclose.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_psdclose.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_psdclose.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_psdclose.ForeColor = Color.White;
|
|
this.lb_VDIC_psdclose.Location = new Point(53, 23);
|
|
this.lb_VDIC_psdclose.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_psdclose.Name = "lb_VDIC_psdclose";
|
|
this.lb_VDIC_psdclose.Size = new Size(48, 27);
|
|
this.lb_VDIC_psdclose.TabIndex = 111;
|
|
this.lb_VDIC_psdclose.Text = "PSD\r\nCLOSE";
|
|
this.lb_VDIC_psdclose.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIC_psdopen.BackColor = Color.DarkGray;
|
|
this.lb_VDIC_psdopen.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIC_psdopen.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIC_psdopen.ForeColor = Color.White;
|
|
this.lb_VDIC_psdopen.Location = new Point(4, 23);
|
|
this.lb_VDIC_psdopen.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIC_psdopen.Name = "lb_VDIC_psdopen";
|
|
this.lb_VDIC_psdopen.Size = new Size(48, 27);
|
|
this.lb_VDIC_psdopen.TabIndex = 110;
|
|
this.lb_VDIC_psdopen.Text = "PSD\r\nOPEN\r\n";
|
|
this.lb_VDIC_psdopen.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_rvs);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_neu);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_fwd);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_mascondr);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_masconbr);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_masconeb);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_doorclose);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_dooropen);
|
|
this.groupBox7.Controls.Add(this.label49);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_fmc);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_yard);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_mcs);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_auto);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_fa);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_tcr);
|
|
this.groupBox7.Controls.Add(this.lb_VDIB_hcr);
|
|
this.groupBox7.Font = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
this.groupBox7.Location = new Point(215, 6);
|
|
this.groupBox7.Margin = new Padding(2, 3, 2, 3);
|
|
this.groupBox7.Name = "groupBox7";
|
|
this.groupBox7.Padding = new Padding(2, 3, 2, 3);
|
|
this.groupBox7.Size = new Size(209, 151);
|
|
this.groupBox7.TabIndex = 277;
|
|
this.groupBox7.TabStop = false;
|
|
this.groupBox7.Text = "cVDI B";
|
|
this.lb_VDIB_rvs.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_rvs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_rvs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_rvs.ForeColor = Color.White;
|
|
this.lb_VDIB_rvs.Location = new Point(151, 110);
|
|
this.lb_VDIB_rvs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_rvs.Name = "lb_VDIB_rvs";
|
|
this.lb_VDIB_rvs.Size = new Size(48, 27);
|
|
this.lb_VDIB_rvs.TabIndex = 125;
|
|
this.lb_VDIB_rvs.Text = "RVS";
|
|
this.lb_VDIB_rvs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_neu.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_neu.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_neu.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_neu.ForeColor = Color.White;
|
|
this.lb_VDIB_neu.Location = new Point(102, 110);
|
|
this.lb_VDIB_neu.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_neu.Name = "lb_VDIB_neu";
|
|
this.lb_VDIB_neu.Size = new Size(48, 27);
|
|
this.lb_VDIB_neu.TabIndex = 124;
|
|
this.lb_VDIB_neu.Text = "NEU";
|
|
this.lb_VDIB_neu.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_fwd.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_fwd.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_fwd.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_fwd.ForeColor = Color.White;
|
|
this.lb_VDIB_fwd.Location = new Point(53, 110);
|
|
this.lb_VDIB_fwd.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_fwd.Name = "lb_VDIB_fwd";
|
|
this.lb_VDIB_fwd.Size = new Size(48, 27);
|
|
this.lb_VDIB_fwd.TabIndex = 123;
|
|
this.lb_VDIB_fwd.Text = "FWD";
|
|
this.lb_VDIB_fwd.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_mascondr.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_mascondr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_mascondr.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_mascondr.ForeColor = Color.White;
|
|
this.lb_VDIB_mascondr.Location = new Point(4, 110);
|
|
this.lb_VDIB_mascondr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_mascondr.Name = "lb_VDIB_mascondr";
|
|
this.lb_VDIB_mascondr.Size = new Size(48, 27);
|
|
this.lb_VDIB_mascondr.TabIndex = 122;
|
|
this.lb_VDIB_mascondr.Text = "MC\r\nDR";
|
|
this.lb_VDIB_mascondr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_masconbr.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_masconbr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_masconbr.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_masconbr.ForeColor = Color.White;
|
|
this.lb_VDIB_masconbr.Location = new Point(151, 81);
|
|
this.lb_VDIB_masconbr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_masconbr.Name = "lb_VDIB_masconbr";
|
|
this.lb_VDIB_masconbr.Size = new Size(48, 27);
|
|
this.lb_VDIB_masconbr.TabIndex = 121;
|
|
this.lb_VDIB_masconbr.Text = "MC\r\nBR";
|
|
this.lb_VDIB_masconbr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_masconeb.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_masconeb.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_masconeb.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_masconeb.ForeColor = Color.White;
|
|
this.lb_VDIB_masconeb.Location = new Point(102, 81);
|
|
this.lb_VDIB_masconeb.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_masconeb.Name = "lb_VDIB_masconeb";
|
|
this.lb_VDIB_masconeb.Size = new Size(48, 27);
|
|
this.lb_VDIB_masconeb.TabIndex = 120;
|
|
this.lb_VDIB_masconeb.Text = "MC\r\nEB";
|
|
this.lb_VDIB_masconeb.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_doorclose.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_doorclose.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_doorclose.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_doorclose.ForeColor = Color.White;
|
|
this.lb_VDIB_doorclose.Location = new Point(53, 81);
|
|
this.lb_VDIB_doorclose.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_doorclose.Name = "lb_VDIB_doorclose";
|
|
this.lb_VDIB_doorclose.Size = new Size(48, 27);
|
|
this.lb_VDIB_doorclose.TabIndex = 119;
|
|
this.lb_VDIB_doorclose.Text = "DOOR\r\nCLOSE";
|
|
this.lb_VDIB_doorclose.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_dooropen.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_dooropen.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_dooropen.Font = new Font("Verdana", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_dooropen.ForeColor = Color.White;
|
|
this.lb_VDIB_dooropen.Location = new Point(4, 81);
|
|
this.lb_VDIB_dooropen.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_dooropen.Name = "lb_VDIB_dooropen";
|
|
this.lb_VDIB_dooropen.Size = new Size(48, 27);
|
|
this.lb_VDIB_dooropen.TabIndex = 118;
|
|
this.lb_VDIB_dooropen.Text = "DOOR\r\nOPEN";
|
|
this.lb_VDIB_dooropen.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.label49.BackColor = Color.DarkGray;
|
|
this.label49.BorderStyle = BorderStyle.FixedSingle;
|
|
this.label49.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.label49.ForeColor = Color.White;
|
|
this.label49.Location = new Point(151, 52);
|
|
this.label49.Margin = new Padding(2, 0, 2, 0);
|
|
this.label49.Name = "label49";
|
|
this.label49.Size = new Size(48, 27);
|
|
this.label49.TabIndex = 117;
|
|
this.label49.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_fmc.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_fmc.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_fmc.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_fmc.ForeColor = Color.White;
|
|
this.lb_VDIB_fmc.Location = new Point(102, 52);
|
|
this.lb_VDIB_fmc.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_fmc.Name = "lb_VDIB_fmc";
|
|
this.lb_VDIB_fmc.Size = new Size(48, 27);
|
|
this.lb_VDIB_fmc.TabIndex = 116;
|
|
this.lb_VDIB_fmc.Text = "FMC";
|
|
this.lb_VDIB_fmc.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_yard.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_yard.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_yard.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_yard.ForeColor = Color.White;
|
|
this.lb_VDIB_yard.Location = new Point(53, 52);
|
|
this.lb_VDIB_yard.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_yard.Name = "lb_VDIB_yard";
|
|
this.lb_VDIB_yard.Size = new Size(48, 27);
|
|
this.lb_VDIB_yard.TabIndex = 115;
|
|
this.lb_VDIB_yard.Text = "YARD";
|
|
this.lb_VDIB_yard.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_mcs.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_mcs.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_mcs.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_mcs.ForeColor = Color.White;
|
|
this.lb_VDIB_mcs.Location = new Point(4, 52);
|
|
this.lb_VDIB_mcs.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_mcs.Name = "lb_VDIB_mcs";
|
|
this.lb_VDIB_mcs.Size = new Size(48, 27);
|
|
this.lb_VDIB_mcs.TabIndex = 114;
|
|
this.lb_VDIB_mcs.Text = "MCS";
|
|
this.lb_VDIB_mcs.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_auto.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_auto.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_auto.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_auto.ForeColor = Color.White;
|
|
this.lb_VDIB_auto.Location = new Point(151, 23);
|
|
this.lb_VDIB_auto.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_auto.Name = "lb_VDIB_auto";
|
|
this.lb_VDIB_auto.Size = new Size(48, 27);
|
|
this.lb_VDIB_auto.TabIndex = 113;
|
|
this.lb_VDIB_auto.Text = "AUTO";
|
|
this.lb_VDIB_auto.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_fa.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_fa.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_fa.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_fa.ForeColor = Color.White;
|
|
this.lb_VDIB_fa.Location = new Point(102, 23);
|
|
this.lb_VDIB_fa.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_fa.Name = "lb_VDIB_fa";
|
|
this.lb_VDIB_fa.Size = new Size(48, 27);
|
|
this.lb_VDIB_fa.TabIndex = 112;
|
|
this.lb_VDIB_fa.Text = "FA";
|
|
this.lb_VDIB_fa.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_tcr.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_tcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_tcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_tcr.ForeColor = Color.White;
|
|
this.lb_VDIB_tcr.Location = new Point(53, 23);
|
|
this.lb_VDIB_tcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_tcr.Name = "lb_VDIB_tcr";
|
|
this.lb_VDIB_tcr.Size = new Size(48, 27);
|
|
this.lb_VDIB_tcr.TabIndex = 111;
|
|
this.lb_VDIB_tcr.Text = "TCR";
|
|
this.lb_VDIB_tcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.lb_VDIB_hcr.BackColor = Color.DarkGray;
|
|
this.lb_VDIB_hcr.BorderStyle = BorderStyle.FixedSingle;
|
|
this.lb_VDIB_hcr.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
this.lb_VDIB_hcr.ForeColor = Color.White;
|
|
this.lb_VDIB_hcr.Location = new Point(4, 23);
|
|
this.lb_VDIB_hcr.Margin = new Padding(2, 0, 2, 0);
|
|
this.lb_VDIB_hcr.Name = "lb_VDIB_hcr";
|
|
this.lb_VDIB_hcr.Size = new Size(48, 27);
|
|
this.lb_VDIB_hcr.TabIndex = 110;
|
|
this.lb_VDIB_hcr.Text = "HCR";
|
|
this.lb_VDIB_hcr.TextAlign = ContentAlignment.MiddleCenter;
|
|
this.metroCheckBox_pwm.BackColor = Color.White;
|
|
this.metroCheckBox_pwm.Checked = true;
|
|
this.metroCheckBox_pwm.CheckState = CheckState.Checked;
|
|
this.metroCheckBox_pwm.Location = new Point(1351, 519);
|
|
this.metroCheckBox_pwm.Name = "metroCheckBox_pwm";
|
|
this.metroCheckBox_pwm.Size = new Size(17, 25);
|
|
this.metroCheckBox_pwm.Style = MetroColorStyle.Purple;
|
|
this.metroCheckBox_pwm.TabIndex = 293;
|
|
this.metroCheckBox_pwm.UseSelectable = true;
|
|
this.metroCheckBox_pwm.CheckedChanged += this.metroCheckBox_CheckedChanged;
|
|
this.metroCheckBox_tasc.BackColor = Color.White;
|
|
this.metroCheckBox_tasc.Checked = true;
|
|
this.metroCheckBox_tasc.CheckState = CheckState.Checked;
|
|
this.metroCheckBox_tasc.Location = new Point(1351, 570);
|
|
this.metroCheckBox_tasc.Name = "metroCheckBox_tasc";
|
|
this.metroCheckBox_tasc.Size = new Size(17, 25);
|
|
this.metroCheckBox_tasc.Style = MetroColorStyle.Green;
|
|
this.metroCheckBox_tasc.TabIndex = 294;
|
|
this.metroCheckBox_tasc.UseSelectable = true;
|
|
this.metroCheckBox_tasc.CheckedChanged += this.metroCheckBox_CheckedChanged;
|
|
this.metroCheckBox_speed.BackColor = Color.White;
|
|
this.metroCheckBox_speed.Checked = true;
|
|
this.metroCheckBox_speed.CheckState = CheckState.Checked;
|
|
this.metroCheckBox_speed.Location = new Point(1351, 621);
|
|
this.metroCheckBox_speed.Name = "metroCheckBox_speed";
|
|
this.metroCheckBox_speed.Size = new Size(17, 25);
|
|
this.metroCheckBox_speed.Style = MetroColorStyle.Blue;
|
|
this.metroCheckBox_speed.TabIndex = 295;
|
|
this.metroCheckBox_speed.UseSelectable = true;
|
|
this.metroCheckBox_speed.CheckedChanged += this.metroCheckBox_CheckedChanged;
|
|
this.metroCheckBox_atc.BackColor = Color.White;
|
|
this.metroCheckBox_atc.Checked = true;
|
|
this.metroCheckBox_atc.CheckState = CheckState.Checked;
|
|
this.metroCheckBox_atc.Location = new Point(1351, 672);
|
|
this.metroCheckBox_atc.Name = "metroCheckBox_atc";
|
|
this.metroCheckBox_atc.Size = new Size(17, 25);
|
|
this.metroCheckBox_atc.Style = MetroColorStyle.Red;
|
|
this.metroCheckBox_atc.TabIndex = 296;
|
|
this.metroCheckBox_atc.UseSelectable = true;
|
|
this.metroCheckBox_atc.CheckedChanged += this.metroCheckBox_CheckedChanged;
|
|
base.AutoScaleMode = AutoScaleMode.None;
|
|
base.ClientSize = new Size(1531, 797);
|
|
base.Controls.Add(this.metroCheckBox_atc);
|
|
base.Controls.Add(this.metroCheckBox_speed);
|
|
base.Controls.Add(this.metroCheckBox_tasc);
|
|
base.Controls.Add(this.metroCheckBox_pwm);
|
|
base.Controls.Add(this.panel_cVDIO);
|
|
base.Controls.Add(this.labelName_gagam);
|
|
base.Controls.Add(this.lbl_Deceleration);
|
|
base.Controls.Add(this.lblpg32d);
|
|
base.Controls.Add(this.cb_TWCR);
|
|
base.Controls.Add(this.lblHMI_sh_stop1);
|
|
base.Controls.Add(this.label29);
|
|
base.Controls.Add(this.lblHMI_ATOlimitSPD);
|
|
base.Controls.Add(this.lblHMI_PG32DIST);
|
|
base.Controls.Add(this.btnPlus);
|
|
base.Controls.Add(this.label21);
|
|
base.Controls.Add(this.lblpg2d);
|
|
base.Controls.Add(this.lblHMI_ov_stop1);
|
|
base.Controls.Add(this.lblHMI_ATOCSWver);
|
|
base.Controls.Add(this.btnMinus);
|
|
base.Controls.Add(this.lblHMI_PG2DIST);
|
|
base.Controls.Add(this.btnZoomPrevious);
|
|
base.Controls.Add(this.lblpg1d);
|
|
base.Controls.Add(this.lblHMI_PG1DIST);
|
|
base.Controls.Add(this.chart1);
|
|
base.Controls.Add(this.listViewHIDE);
|
|
base.Controls.Add(this.listViewHOL);
|
|
base.Controls.Add(this.listViewJJAC);
|
|
base.Controls.Add(this.lblHMI_wheelcheck);
|
|
base.Controls.Add(this.groupBoxStatus);
|
|
base.FormBorderStyle = FormBorderStyle.None;
|
|
base.Margin = new Padding(2, 3, 2, 3);
|
|
base.Name = "mmiUI";
|
|
this.Text = "YARD";
|
|
base.FormClosed += this.mmiUI_FormClosed;
|
|
base.Load += this.mmiUI_Load;
|
|
((ISupportInitialize)this.chart1).EndInit();
|
|
this.gb_ATC.ResumeLayout(false);
|
|
this.gb_ATO.ResumeLayout(false);
|
|
this.gb_TWC.ResumeLayout(false);
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox4.ResumeLayout(false);
|
|
this.groupBoxStatus.ResumeLayout(false);
|
|
this.groupBox5.ResumeLayout(false);
|
|
this.groupBox6.ResumeLayout(false);
|
|
this.groupBox3.ResumeLayout(false);
|
|
this.panel_cVDIO.ResumeLayout(false);
|
|
this.groupBox12.ResumeLayout(false);
|
|
this.groupBox11.ResumeLayout(false);
|
|
this.groupBox10.ResumeLayout(false);
|
|
this.groupBox9.ResumeLayout(false);
|
|
this.groupBox7.ResumeLayout(false);
|
|
base.ResumeLayout(false);
|
|
}
|
|
|
|
// Token: 0x0400007B RID: 123
|
|
private List<MergedData> dataSource;
|
|
|
|
// Token: 0x0400007C RID: 124
|
|
private DOSItoMMIClass _mmi = new DOSItoMMIClass();
|
|
|
|
// Token: 0x0400007D RID: 125
|
|
private MMItoDOSIClass _fmmi = new MMItoDOSIClass();
|
|
|
|
// Token: 0x0400007E RID: 126
|
|
private DOSItoTCMSClass _tcms = new DOSItoTCMSClass();
|
|
|
|
// Token: 0x0400007F RID: 127
|
|
private TCMStoDOSIClass _ftcms = new TCMStoDOSIClass();
|
|
|
|
// Token: 0x04000080 RID: 128
|
|
private ATCR250Class _atcr250 = new ATCR250Class();
|
|
|
|
// Token: 0x04000081 RID: 129
|
|
private ATCR501Class _atcr501 = new ATCR501Class();
|
|
|
|
// Token: 0x04000082 RID: 130
|
|
private TWCT320Class _twct320 = new TWCT320Class();
|
|
|
|
// Token: 0x04000083 RID: 131
|
|
private ATOR160Class _ator160 = new ATOR160Class();
|
|
|
|
// Token: 0x04000084 RID: 132
|
|
private ACPU200Class _acpu200 = new ACPU200Class();
|
|
|
|
// Token: 0x04000085 RID: 133
|
|
private ACPU201Class _acpu201 = new ACPU201Class();
|
|
|
|
// Token: 0x04000086 RID: 134
|
|
private ACPU202Class _acpu202 = new ACPU202Class();
|
|
|
|
// Token: 0x04000087 RID: 135
|
|
private CCC150Class _ccc150 = new CCC150Class();
|
|
|
|
// Token: 0x04000088 RID: 136
|
|
private CCC151Class _ccc151 = new CCC151Class();
|
|
|
|
// Token: 0x04000089 RID: 137
|
|
private CCC152Class _ccc152 = new CCC152Class();
|
|
|
|
// Token: 0x0400008A RID: 138
|
|
private Series serATC;
|
|
|
|
// Token: 0x0400008B RID: 139
|
|
private Series serTASC;
|
|
|
|
// Token: 0x0400008C RID: 140
|
|
private Series serSpeed;
|
|
|
|
// Token: 0x0400008D RID: 141
|
|
private Series serPWM;
|
|
|
|
// Token: 0x0400008E RID: 142
|
|
private Series serStation;
|
|
|
|
// Token: 0x0400008F RID: 143
|
|
private int _chartSize;
|
|
|
|
// Token: 0x04000090 RID: 144
|
|
private int _dataIndex;
|
|
|
|
// Token: 0x04000091 RID: 145
|
|
private int _prevCursorPos;
|
|
|
|
// Token: 0x04000092 RID: 146
|
|
private string selLabelName;
|
|
|
|
// Token: 0x04000093 RID: 147
|
|
private Stack<int> _chartSizeStack = new Stack<int>();
|
|
|
|
// Token: 0x04000094 RID: 148
|
|
public bool isTC1;
|
|
|
|
// Token: 0x04000095 RID: 149
|
|
private bool pg1dt;
|
|
|
|
// Token: 0x04000096 RID: 150
|
|
private bool pg2dt;
|
|
|
|
// Token: 0x04000097 RID: 151
|
|
private bool pg3dt;
|
|
|
|
// Token: 0x04000098 RID: 152
|
|
private bool pgXdt;
|
|
|
|
// Token: 0x04000099 RID: 153
|
|
private bool pgATSdt;
|
|
|
|
// Token: 0x0400009A RID: 154
|
|
private bool wrpg3;
|
|
|
|
// Token: 0x0400009B RID: 155
|
|
private bool twcdt;
|
|
|
|
// Token: 0x0400009C RID: 156
|
|
private bool addstationmaker;
|
|
|
|
// Token: 0x0400009D RID: 157
|
|
private int pg1Pt;
|
|
|
|
// Token: 0x0400009E RID: 158
|
|
private int pg2Pt;
|
|
|
|
// Token: 0x0400009F RID: 159
|
|
private int pg33Pt;
|
|
|
|
// Token: 0x040000A0 RID: 160
|
|
private int startPt;
|
|
|
|
// Token: 0x040000A1 RID: 161
|
|
private int virDTG;
|
|
|
|
// Token: 0x040000A2 RID: 162
|
|
private string preStaion;
|
|
|
|
// Token: 0x040000A3 RID: 163
|
|
private RealtimelogForm realtimelog;
|
|
|
|
// Token: 0x040000A4 RID: 164
|
|
private FileStream _fileStream;
|
|
|
|
// Token: 0x040000A5 RID: 165
|
|
public StreamWriter stw;
|
|
|
|
// Token: 0x040000A6 RID: 166
|
|
public List<StationInfo> _mstationInfoList;
|
|
|
|
// Token: 0x040000A7 RID: 167
|
|
public Screen[] sc;
|
|
|
|
// Token: 0x040000A8 RID: 168
|
|
public ToolTip tt;
|
|
|
|
// Token: 0x040000A9 RID: 169
|
|
private IContainer components = null;
|
|
|
|
// Token: 0x040000AA RID: 170
|
|
private Label lblHMI_tasc;
|
|
|
|
// Token: 0x040000AB RID: 171
|
|
private Label lblHMI_nomal;
|
|
|
|
// Token: 0x040000AC RID: 172
|
|
private Label lblHMI_recovery;
|
|
|
|
// Token: 0x040000AD RID: 173
|
|
private Label lblHMI_kur;
|
|
|
|
// Token: 0x040000AE RID: 174
|
|
private Label lblHMI_inching;
|
|
|
|
// Token: 0x040000AF RID: 175
|
|
private Label lblHMI_wheelcheck;
|
|
|
|
// Token: 0x040000B0 RID: 176
|
|
private Label lblHMI_over_spd_warning;
|
|
|
|
// Token: 0x040000B1 RID: 177
|
|
private Label lblHMI_trac_cs;
|
|
|
|
// Token: 0x040000B2 RID: 178
|
|
private Label lblHMI_trac_br;
|
|
|
|
// Token: 0x040000B3 RID: 179
|
|
private Label label27;
|
|
|
|
// Token: 0x040000B4 RID: 180
|
|
private Label label2;
|
|
|
|
// Token: 0x040000B5 RID: 181
|
|
private Label label23;
|
|
|
|
// Token: 0x040000B6 RID: 182
|
|
private Label label16;
|
|
|
|
// Token: 0x040000B7 RID: 183
|
|
private Label label15;
|
|
|
|
// Token: 0x040000B8 RID: 184
|
|
private Label label14;
|
|
|
|
// Token: 0x040000B9 RID: 185
|
|
private Label label13;
|
|
|
|
// Token: 0x040000BA RID: 186
|
|
public Label lblHMI_DRMOD;
|
|
|
|
// Token: 0x040000BB RID: 187
|
|
public Label lblHMI_TRNNO;
|
|
|
|
// Token: 0x040000BC RID: 188
|
|
public Label lblHMI_TCMSDR;
|
|
|
|
// Token: 0x040000BD RID: 189
|
|
public Label lblHMI_IPDT;
|
|
|
|
// Token: 0x040000BE RID: 190
|
|
public Label lblHMI_MPDT;
|
|
|
|
// Token: 0x040000BF RID: 191
|
|
public Label lblHMI_WHD2;
|
|
|
|
// Token: 0x040000C0 RID: 192
|
|
public Label lblHMI_WHD1;
|
|
|
|
// Token: 0x040000C1 RID: 193
|
|
private ListView listViewJJAC;
|
|
|
|
// Token: 0x040000C2 RID: 194
|
|
private ColumnHeader columnHeader1;
|
|
|
|
// Token: 0x040000C3 RID: 195
|
|
private ColumnHeader columnHeader2;
|
|
|
|
// Token: 0x040000C4 RID: 196
|
|
private ListView listViewHOL;
|
|
|
|
// Token: 0x040000C5 RID: 197
|
|
private ColumnHeader columnHeader3;
|
|
|
|
// Token: 0x040000C6 RID: 198
|
|
private ColumnHeader columnHeader4;
|
|
|
|
// Token: 0x040000C7 RID: 199
|
|
public ListView listViewHIDE;
|
|
|
|
// Token: 0x040000C8 RID: 200
|
|
private ColumnHeader columnHeader5;
|
|
|
|
// Token: 0x040000C9 RID: 201
|
|
private ColumnHeader columnHeader6;
|
|
|
|
// Token: 0x040000CA RID: 202
|
|
private ColumnHeader columnHeader7;
|
|
|
|
// Token: 0x040000CB RID: 203
|
|
private ColumnHeader columnHeader8;
|
|
|
|
// Token: 0x040000CC RID: 204
|
|
private Timer timer2;
|
|
|
|
// Token: 0x040000CD RID: 205
|
|
public Chart chart1;
|
|
|
|
// Token: 0x040000CE RID: 206
|
|
private Button btnZoomPrevious;
|
|
|
|
// Token: 0x040000CF RID: 207
|
|
private Label lblHMI_system_active;
|
|
|
|
// Token: 0x040000D0 RID: 208
|
|
private AquaGauge aquaGauge1;
|
|
|
|
// Token: 0x040000D1 RID: 209
|
|
private ListView LVHMI_ERRMESS;
|
|
|
|
// Token: 0x040000D2 RID: 210
|
|
private ColumnHeader TYPE;
|
|
|
|
// Token: 0x040000D3 RID: 211
|
|
private ColumnHeader ERROR_MESSAGE;
|
|
|
|
// Token: 0x040000D4 RID: 212
|
|
private Label label22;
|
|
|
|
// Token: 0x040000D5 RID: 213
|
|
private Label lblHMI_osc;
|
|
|
|
// Token: 0x040000D6 RID: 214
|
|
private GroupBox gb_ATC;
|
|
|
|
// Token: 0x040000D7 RID: 215
|
|
private Label label9;
|
|
|
|
// Token: 0x040000D8 RID: 216
|
|
private Label label8;
|
|
|
|
// Token: 0x040000D9 RID: 217
|
|
private Label label5;
|
|
|
|
// Token: 0x040000DA RID: 218
|
|
private Label label4;
|
|
|
|
// Token: 0x040000DB RID: 219
|
|
private Label label3;
|
|
|
|
// Token: 0x040000DC RID: 220
|
|
private Label label1;
|
|
|
|
// Token: 0x040000DD RID: 221
|
|
public Label lblHMI_ATClimitSPD;
|
|
|
|
// Token: 0x040000DE RID: 222
|
|
private Label lblHMI_tc2;
|
|
|
|
// Token: 0x040000DF RID: 223
|
|
public Label lblHMI_SWver;
|
|
|
|
// Token: 0x040000E0 RID: 224
|
|
public Label lblHMI_ATC_CARRIERF;
|
|
|
|
// Token: 0x040000E1 RID: 225
|
|
public Label lblHMI_ATC_CODEF;
|
|
|
|
// Token: 0x040000E2 RID: 226
|
|
public Label lblHMI_ATC_CODE_CARRIERF;
|
|
|
|
// Token: 0x040000E3 RID: 227
|
|
public Label lblHMI_ATCCOD;
|
|
|
|
// Token: 0x040000E4 RID: 228
|
|
private Label lblHMI_atcStatus;
|
|
|
|
// Token: 0x040000E5 RID: 229
|
|
private GroupBox gb_ATO;
|
|
|
|
// Token: 0x040000E6 RID: 230
|
|
private Label label26;
|
|
|
|
// Token: 0x040000E7 RID: 231
|
|
public Label lblHMI_marker;
|
|
|
|
// Token: 0x040000E8 RID: 232
|
|
private Label label28;
|
|
|
|
// Token: 0x040000E9 RID: 233
|
|
private Label label29;
|
|
|
|
// Token: 0x040000EA RID: 234
|
|
public Label lblHMI_ATOlimitSPD;
|
|
|
|
// Token: 0x040000EB RID: 235
|
|
private Label label21;
|
|
|
|
// Token: 0x040000EC RID: 236
|
|
public Label lblHMI_ATOCSWver;
|
|
|
|
// Token: 0x040000ED RID: 237
|
|
public Label lblHMI_pwm;
|
|
|
|
// Token: 0x040000EE RID: 238
|
|
private Label labelDTG;
|
|
|
|
// Token: 0x040000EF RID: 239
|
|
public Label lblHMI_movedistatnce;
|
|
|
|
// Token: 0x040000F0 RID: 240
|
|
private GroupBox gb_TWC;
|
|
|
|
// Token: 0x040000F1 RID: 241
|
|
private Label lblHMI_wrongdoor;
|
|
|
|
// Token: 0x040000F2 RID: 242
|
|
private Label label7;
|
|
|
|
// Token: 0x040000F3 RID: 243
|
|
private Label lblHMI_twct_en;
|
|
|
|
// Token: 0x040000F4 RID: 244
|
|
public Label lblHMI_PSTN;
|
|
|
|
// Token: 0x040000F5 RID: 245
|
|
private Label label18;
|
|
|
|
// Token: 0x040000F6 RID: 246
|
|
private Label lblHMI_door_close_warning;
|
|
|
|
// Token: 0x040000F7 RID: 247
|
|
public Label lblHMI_NSTN;
|
|
|
|
// Token: 0x040000F8 RID: 248
|
|
public Label lblHMI_NEXTDR;
|
|
|
|
// Token: 0x040000F9 RID: 249
|
|
private Label label19;
|
|
|
|
// Token: 0x040000FA RID: 250
|
|
private Label label_nextDoor;
|
|
|
|
// Token: 0x040000FB RID: 251
|
|
public Label lblHMI_LSTN;
|
|
|
|
// Token: 0x040000FC RID: 252
|
|
private Label lblHMI_adol;
|
|
|
|
// Token: 0x040000FD RID: 253
|
|
private GroupBox groupBox2;
|
|
|
|
// Token: 0x040000FE RID: 254
|
|
private Label lblHMI_fail_atoc;
|
|
|
|
// Token: 0x040000FF RID: 255
|
|
private Label lblHMI_fail_tcms;
|
|
|
|
// Token: 0x04000100 RID: 256
|
|
private Label lblHMI_fail_tacho1;
|
|
|
|
// Token: 0x04000101 RID: 257
|
|
private Label lblHMI_fail_tacho2;
|
|
|
|
// Token: 0x04000102 RID: 258
|
|
private GroupBox groupBox1;
|
|
|
|
// Token: 0x04000103 RID: 259
|
|
private Label lblHMI_fa;
|
|
|
|
// Token: 0x04000104 RID: 260
|
|
private Label lblHMI_mascon_dr;
|
|
|
|
// Token: 0x04000105 RID: 261
|
|
private Label lblHMI_fmc;
|
|
|
|
// Token: 0x04000106 RID: 262
|
|
private Label lblHMI_mascon_br;
|
|
|
|
// Token: 0x04000107 RID: 263
|
|
private Label lblHMI_hcr;
|
|
|
|
// Token: 0x04000108 RID: 264
|
|
private Label lblHMI_yard;
|
|
|
|
// Token: 0x04000109 RID: 265
|
|
private Label lblHMI_mascon_eb;
|
|
|
|
// Token: 0x0400010A RID: 266
|
|
private Label lblHMI_tcr;
|
|
|
|
// Token: 0x0400010B RID: 267
|
|
private Label lblHMI_auto;
|
|
|
|
// Token: 0x0400010C RID: 268
|
|
private Label lblHMI_mcs;
|
|
|
|
// Token: 0x0400010D RID: 269
|
|
private Label lblHMI_door_open;
|
|
|
|
// Token: 0x0400010E RID: 270
|
|
private Label lblHMI_door_close;
|
|
|
|
// Token: 0x0400010F RID: 271
|
|
private Label lblHMI_reversingrod_fwd;
|
|
|
|
// Token: 0x04000110 RID: 272
|
|
private Label lblHMI_reversingrod_neu;
|
|
|
|
// Token: 0x04000111 RID: 273
|
|
private Label lblHMI_reversingrod_rvs;
|
|
|
|
// Token: 0x04000112 RID: 274
|
|
private Label lblHMI_psd_open;
|
|
|
|
// Token: 0x04000113 RID: 275
|
|
private Label lblHMI_psd_close;
|
|
|
|
// Token: 0x04000114 RID: 276
|
|
private Label lblHMI_ador;
|
|
|
|
// Token: 0x04000115 RID: 277
|
|
public Label lblHMI_TIME;
|
|
|
|
// Token: 0x04000116 RID: 278
|
|
private GroupBox groupBox4;
|
|
|
|
// Token: 0x04000117 RID: 279
|
|
private Label lblHMI_do_ebp;
|
|
|
|
// Token: 0x04000118 RID: 280
|
|
private Label lblHMI_do_zvr;
|
|
|
|
// Token: 0x04000119 RID: 281
|
|
private Label lblHMI_do_fsb;
|
|
|
|
// Token: 0x0400011A RID: 282
|
|
private Label lblHMI_do_ebm;
|
|
|
|
// Token: 0x0400011B RID: 283
|
|
private Label lblHMI_do_edl;
|
|
|
|
// Token: 0x0400011C RID: 284
|
|
private Label lblHMI_do_edr;
|
|
|
|
// Token: 0x0400011D RID: 285
|
|
private Label lblHMI_adc;
|
|
|
|
// Token: 0x0400011E RID: 286
|
|
public GroupBox groupBoxStatus;
|
|
|
|
// Token: 0x0400011F RID: 287
|
|
private GroupBox groupBox5;
|
|
|
|
// Token: 0x04000120 RID: 288
|
|
private Label lblHMI_sel;
|
|
|
|
// Token: 0x04000121 RID: 289
|
|
private GroupBox groupBox6;
|
|
|
|
// Token: 0x04000122 RID: 290
|
|
private Button btnMinus;
|
|
|
|
// Token: 0x04000123 RID: 291
|
|
private Button btnPlus;
|
|
|
|
// Token: 0x04000124 RID: 292
|
|
public Label lblHMI_tc1;
|
|
|
|
// Token: 0x04000125 RID: 293
|
|
public ComboBox cb_TWCR;
|
|
|
|
// Token: 0x04000126 RID: 294
|
|
private Label lblHMI_sh_stop1;
|
|
|
|
// Token: 0x04000127 RID: 295
|
|
private Label lblHMI_ov_stop1;
|
|
|
|
// Token: 0x04000128 RID: 296
|
|
private Label lblHMI_sh_stop2;
|
|
|
|
// Token: 0x04000129 RID: 297
|
|
private Label lblHMI_ov_stop2;
|
|
|
|
// Token: 0x0400012A RID: 298
|
|
private Label lblHMI_limit_drive;
|
|
|
|
// Token: 0x0400012B RID: 299
|
|
private Label lblHMI_pre_brake;
|
|
|
|
// Token: 0x0400012C RID: 300
|
|
private Label lblHMI_tascdb;
|
|
|
|
// Token: 0x0400012D RID: 301
|
|
private ToolTip toolTip1;
|
|
|
|
// Token: 0x0400012E RID: 302
|
|
private Label lblpg32d;
|
|
|
|
// Token: 0x0400012F RID: 303
|
|
public Label lblHMI_PG32DIST;
|
|
|
|
// Token: 0x04000130 RID: 304
|
|
private Label lblpg2d;
|
|
|
|
// Token: 0x04000131 RID: 305
|
|
public Label lblHMI_PG2DIST;
|
|
|
|
// Token: 0x04000132 RID: 306
|
|
private Label lblpg1d;
|
|
|
|
// Token: 0x04000133 RID: 307
|
|
public Label lblHMI_PG1DIST;
|
|
|
|
// Token: 0x04000134 RID: 308
|
|
private Label labelName_gagam;
|
|
|
|
// Token: 0x04000135 RID: 309
|
|
public Label lbl_Deceleration;
|
|
|
|
// Token: 0x04000136 RID: 310
|
|
private Label lblHMI_osc_f0_ok;
|
|
|
|
// Token: 0x04000137 RID: 311
|
|
private Label lblHMI_ato_eb_req;
|
|
|
|
// Token: 0x04000138 RID: 312
|
|
private Label lblHMI_ato_start_btn;
|
|
|
|
// Token: 0x04000139 RID: 313
|
|
private Label lblHMI_start_enable;
|
|
|
|
// Token: 0x0400013A RID: 314
|
|
private Label oscLABEL;
|
|
|
|
// Token: 0x0400013B RID: 315
|
|
public Label lblHMI_liveOSCf;
|
|
|
|
// Token: 0x0400013C RID: 316
|
|
private Label lblHMI_tacho_dir_a;
|
|
|
|
// Token: 0x0400013D RID: 317
|
|
private Label lblHMI_tacho_dir_b;
|
|
|
|
// Token: 0x0400013E RID: 318
|
|
private GroupBox groupBox3;
|
|
|
|
// Token: 0x0400013F RID: 319
|
|
private Label lb_VDIA_rvs;
|
|
|
|
// Token: 0x04000140 RID: 320
|
|
private Label lb_VDIA_neu;
|
|
|
|
// Token: 0x04000141 RID: 321
|
|
private Label lb_VDIA_fwd;
|
|
|
|
// Token: 0x04000142 RID: 322
|
|
private Label lb_VDIA_mascondr;
|
|
|
|
// Token: 0x04000143 RID: 323
|
|
private Label lb_VDIA_masconbr;
|
|
|
|
// Token: 0x04000144 RID: 324
|
|
private Label lb_VDIA_masconeb;
|
|
|
|
// Token: 0x04000145 RID: 325
|
|
private Label lb_VDIA_doorclose;
|
|
|
|
// Token: 0x04000146 RID: 326
|
|
private Label lb_VDIA_dooropen;
|
|
|
|
// Token: 0x04000147 RID: 327
|
|
private Label label24;
|
|
|
|
// Token: 0x04000148 RID: 328
|
|
private Label lb_VDIA_fmc;
|
|
|
|
// Token: 0x04000149 RID: 329
|
|
private Label lb_VDIA_yard;
|
|
|
|
// Token: 0x0400014A RID: 330
|
|
private Label lb_VDIA_mcs;
|
|
|
|
// Token: 0x0400014B RID: 331
|
|
private Label lb_VDIA_auto;
|
|
|
|
// Token: 0x0400014C RID: 332
|
|
private Label lb_VDIA_fa;
|
|
|
|
// Token: 0x0400014D RID: 333
|
|
private Label lb_VDIA_tcr;
|
|
|
|
// Token: 0x0400014E RID: 334
|
|
private Label lb_VDIA_hcr;
|
|
|
|
// Token: 0x0400014F RID: 335
|
|
private GroupBox groupBox12;
|
|
|
|
// Token: 0x04000150 RID: 336
|
|
private Label label89;
|
|
|
|
// Token: 0x04000151 RID: 337
|
|
private Label label90;
|
|
|
|
// Token: 0x04000152 RID: 338
|
|
private Label lb_VDOB_edl;
|
|
|
|
// Token: 0x04000153 RID: 339
|
|
private Label lb_VDOB_edr;
|
|
|
|
// Token: 0x04000154 RID: 340
|
|
private Label lb_VDOB_zvr;
|
|
|
|
// Token: 0x04000155 RID: 341
|
|
private Label lb_VDOB_fsb;
|
|
|
|
// Token: 0x04000156 RID: 342
|
|
private Label lb_VDOB_ebm;
|
|
|
|
// Token: 0x04000157 RID: 343
|
|
private Label lb_VDOB_ebp;
|
|
|
|
// Token: 0x04000158 RID: 344
|
|
private GroupBox groupBox11;
|
|
|
|
// Token: 0x04000159 RID: 345
|
|
private Label label97;
|
|
|
|
// Token: 0x0400015A RID: 346
|
|
private Label label98;
|
|
|
|
// Token: 0x0400015B RID: 347
|
|
private Label lb_VDOA_edl;
|
|
|
|
// Token: 0x0400015C RID: 348
|
|
private Label lb_VDOA_edr;
|
|
|
|
// Token: 0x0400015D RID: 349
|
|
private Label lb_VDOA_zvr;
|
|
|
|
// Token: 0x0400015E RID: 350
|
|
private Label lb_VDOA_fsb;
|
|
|
|
// Token: 0x0400015F RID: 351
|
|
private Label lb_VDOA_ebm;
|
|
|
|
// Token: 0x04000160 RID: 352
|
|
private Label lb_VDOA_ebp;
|
|
|
|
// Token: 0x04000161 RID: 353
|
|
private GroupBox groupBox10;
|
|
|
|
// Token: 0x04000162 RID: 354
|
|
private Label lb_VDID_tc2;
|
|
|
|
// Token: 0x04000163 RID: 355
|
|
private Label lb_VDID_tc1;
|
|
|
|
// Token: 0x04000164 RID: 356
|
|
private Label lb_VDID_edlfb;
|
|
|
|
// Token: 0x04000165 RID: 357
|
|
private Label lb_VDID_edrfb;
|
|
|
|
// Token: 0x04000166 RID: 358
|
|
private Label lb_VDID_zvrfb;
|
|
|
|
// Token: 0x04000167 RID: 359
|
|
private Label lb_VDID_fsbfb;
|
|
|
|
// Token: 0x04000168 RID: 360
|
|
private Label lb_VDID_ebmfb;
|
|
|
|
// Token: 0x04000169 RID: 361
|
|
private Label lb_VDID_ebpfb;
|
|
|
|
// Token: 0x0400016A RID: 362
|
|
private Label lb_VDID_unit1;
|
|
|
|
// Token: 0x0400016B RID: 363
|
|
private Label label82;
|
|
|
|
// Token: 0x0400016C RID: 364
|
|
private Label label83;
|
|
|
|
// Token: 0x0400016D RID: 365
|
|
private Label label84;
|
|
|
|
// Token: 0x0400016E RID: 366
|
|
private Label label85;
|
|
|
|
// Token: 0x0400016F RID: 367
|
|
private Label lb_VDID_startbtn;
|
|
|
|
// Token: 0x04000170 RID: 368
|
|
private Label lb_VDID_psdclose;
|
|
|
|
// Token: 0x04000171 RID: 369
|
|
private Label lb_VDID_psdopen;
|
|
|
|
// Token: 0x04000172 RID: 370
|
|
private GroupBox groupBox9;
|
|
|
|
// Token: 0x04000173 RID: 371
|
|
private Label lb_VDIC_tc2;
|
|
|
|
// Token: 0x04000174 RID: 372
|
|
private Label lb_VDIC_tc1;
|
|
|
|
// Token: 0x04000175 RID: 373
|
|
private Label lb_VDIC_edlfb;
|
|
|
|
// Token: 0x04000176 RID: 374
|
|
private Label lb_VDIC_edrfb;
|
|
|
|
// Token: 0x04000177 RID: 375
|
|
private Label lb_VDIC_zvrfb;
|
|
|
|
// Token: 0x04000178 RID: 376
|
|
private Label lb_VDIC_fsbfb;
|
|
|
|
// Token: 0x04000179 RID: 377
|
|
private Label lb_VDIC_ebmfb;
|
|
|
|
// Token: 0x0400017A RID: 378
|
|
private Label lb_VDIC_ebpfb;
|
|
|
|
// Token: 0x0400017B RID: 379
|
|
private Label lb_VDIC_unit1;
|
|
|
|
// Token: 0x0400017C RID: 380
|
|
private Label label66;
|
|
|
|
// Token: 0x0400017D RID: 381
|
|
private Label label67;
|
|
|
|
// Token: 0x0400017E RID: 382
|
|
private Label label68;
|
|
|
|
// Token: 0x0400017F RID: 383
|
|
private Label label69;
|
|
|
|
// Token: 0x04000180 RID: 384
|
|
private Label lb_VDIC_startbtn;
|
|
|
|
// Token: 0x04000181 RID: 385
|
|
private Label lb_VDIC_psdclose;
|
|
|
|
// Token: 0x04000182 RID: 386
|
|
private Label lb_VDIC_psdopen;
|
|
|
|
// Token: 0x04000183 RID: 387
|
|
private GroupBox groupBox7;
|
|
|
|
// Token: 0x04000184 RID: 388
|
|
private Label lb_VDIB_rvs;
|
|
|
|
// Token: 0x04000185 RID: 389
|
|
private Label lb_VDIB_neu;
|
|
|
|
// Token: 0x04000186 RID: 390
|
|
private Label lb_VDIB_fwd;
|
|
|
|
// Token: 0x04000187 RID: 391
|
|
private Label lb_VDIB_mascondr;
|
|
|
|
// Token: 0x04000188 RID: 392
|
|
private Label lb_VDIB_masconbr;
|
|
|
|
// Token: 0x04000189 RID: 393
|
|
private Label lb_VDIB_masconeb;
|
|
|
|
// Token: 0x0400018A RID: 394
|
|
private Label lb_VDIB_doorclose;
|
|
|
|
// Token: 0x0400018B RID: 395
|
|
private Label lb_VDIB_dooropen;
|
|
|
|
// Token: 0x0400018C RID: 396
|
|
private Label label49;
|
|
|
|
// Token: 0x0400018D RID: 397
|
|
private Label lb_VDIB_fmc;
|
|
|
|
// Token: 0x0400018E RID: 398
|
|
private Label lb_VDIB_yard;
|
|
|
|
// Token: 0x0400018F RID: 399
|
|
private Label lb_VDIB_mcs;
|
|
|
|
// Token: 0x04000190 RID: 400
|
|
private Label lb_VDIB_auto;
|
|
|
|
// Token: 0x04000191 RID: 401
|
|
private Label lb_VDIB_fa;
|
|
|
|
// Token: 0x04000192 RID: 402
|
|
private Label lb_VDIB_tcr;
|
|
|
|
// Token: 0x04000193 RID: 403
|
|
private Label lb_VDIB_hcr;
|
|
|
|
// Token: 0x04000194 RID: 404
|
|
public Panel panel_cVDIO;
|
|
|
|
// Token: 0x04000195 RID: 405
|
|
private Label lblHMI_trainberth;
|
|
|
|
// Token: 0x04000196 RID: 406
|
|
public Label lblHMI_trac_dr;
|
|
|
|
// Token: 0x04000197 RID: 407
|
|
private Label lblHMI_fail_atcr;
|
|
|
|
// Token: 0x04000198 RID: 408
|
|
private MetroCheckBox metroCheckBox_pwm;
|
|
|
|
// Token: 0x04000199 RID: 409
|
|
private MetroCheckBox metroCheckBox_tasc;
|
|
|
|
// Token: 0x0400019A RID: 410
|
|
private MetroCheckBox metroCheckBox_speed;
|
|
|
|
// Token: 0x0400019B RID: 411
|
|
private MetroCheckBox metroCheckBox_atc;
|
|
|
|
// Token: 0x02000060 RID: 96
|
|
// (Invoke) Token: 0x060001B6 RID: 438
|
|
public delegate void DataSender(int idx);
|
|
|
|
// Token: 0x02000061 RID: 97
|
|
// (Invoke) Token: 0x060001BA RID: 442
|
|
public delegate void funtionCall();
|
|
}
|
|
}
|