add mapcontrol

add remote path(gitlab)
This commit is contained in:
chi
2025-05-22 16:21:56 +09:00
parent 7dc068032f
commit 34130e9c86
23 changed files with 2368 additions and 181 deletions

View File

@@ -28,59 +28,68 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.ctlAuto1 = new Project.CtlAuto();
this.SuspendLayout();
components = new System.ComponentModel.Container();
timer1 = new System.Windows.Forms.Timer(components);
ctlAuto1 = new CtlAuto();
panel1 = new Panel();
SuspendLayout();
//
// timer1
//
this.timer1.Interval = 200;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
timer1.Interval = 200;
timer1.Tick += timer1_Tick;
//
// ctlAuto1
//
this.ctlAuto1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
this.ctlAuto1.BorderColor = System.Drawing.Color.Transparent;
this.ctlAuto1.Dock = System.Windows.Forms.DockStyle.Fill;
this.ctlAuto1.Font = new System.Drawing.Font("맑은 고딕", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.ctlAuto1.Font_BMS_Level = new System.Drawing.Font("Bahnschrift Condensed", 250F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ctlAuto1.Font_BMS_Volt = new System.Drawing.Font("Bahnschrift Condensed", 50.25F, System.Drawing.FontStyle.Bold);
this.ctlAuto1.Font_MAIN_BMSLevel = new System.Drawing.Font("Arial Narrow", 150F, System.Drawing.FontStyle.Bold);
this.ctlAuto1.ForeColor = System.Drawing.Color.White;
this.ctlAuto1.ItemGap = 0;
this.ctlAuto1.Items = null;
this.ctlAuto1.Location = new System.Drawing.Point(0, 0);
this.ctlAuto1.MinimumSize = new System.Drawing.Size(100, 30);
this.ctlAuto1.Name = "ctlAuto1";
this.ctlAuto1.ProgressMax = 100F;
this.ctlAuto1.ProgressVal = 50F;
this.ctlAuto1.Scean = Project.CtlAuto.eScean.Normal;
this.ctlAuto1.Size = new System.Drawing.Size(1014, 579);
this.ctlAuto1.StatusMessage = "상태메세지 입니다";
this.ctlAuto1.StopMessage = "";
this.ctlAuto1.StopTime = new System.DateTime(((long)(0)));
this.ctlAuto1.TabIndex = 20;
this.ctlAuto1.Text = "ctlAuto1";
ctlAuto1.BackColor = Color.FromArgb(32, 32, 32);
ctlAuto1.BorderColor = Color.Transparent;
ctlAuto1.Font = new Font("맑은 고딕", 20F, FontStyle.Regular, GraphicsUnit.Point, 129);
ctlAuto1.Font_BMS_Level = new Font("Bahnschrift Condensed", 250F, FontStyle.Bold, GraphicsUnit.Point, 0);
ctlAuto1.Font_BMS_Volt = new Font("Bahnschrift Condensed", 50.25F, FontStyle.Bold);
ctlAuto1.Font_MAIN_BMSLevel = new Font("Arial Narrow", 150F, FontStyle.Bold);
ctlAuto1.ForeColor = Color.White;
ctlAuto1.ItemGap = 0;
ctlAuto1.Items = null;
ctlAuto1.Location = new Point(835, 338);
ctlAuto1.MinimumSize = new Size(100, 30);
ctlAuto1.Name = "ctlAuto1";
ctlAuto1.ProgressMax = 100F;
ctlAuto1.ProgressVal = 50F;
ctlAuto1.Scean = CtlAuto.eScean.Normal;
ctlAuto1.Size = new Size(179, 241);
ctlAuto1.StatusMessage = "상태메세지 입니다";
ctlAuto1.StopMessage = "";
ctlAuto1.StopTime = new DateTime(0L);
ctlAuto1.TabIndex = 20;
ctlAuto1.Text = "ctlAuto1";
//
// panel1
//
panel1.Dock = DockStyle.Fill;
panel1.Location = new Point(0, 0);
panel1.Name = "panel1";
panel1.Size = new Size(1014, 579);
panel1.TabIndex = 21;
//
// fAuto
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
this.ClientSize = new System.Drawing.Size(1014, 579);
this.Controls.Add(this.ctlAuto1);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "fAuto";
this.Text = "fAuto";
this.Load += new System.EventHandler(this.fAuto_Load);
this.VisibleChanged += new System.EventHandler(this.fAuto_VisibleChanged);
this.ResumeLayout(false);
AutoScaleMode = AutoScaleMode.None;
BackColor = Color.FromArgb(15, 15, 15);
ClientSize = new Size(1014, 579);
Controls.Add(panel1);
Controls.Add(ctlAuto1);
DoubleBuffered = true;
FormBorderStyle = FormBorderStyle.None;
Name = "fAuto";
Text = "fAuto";
Load += fAuto_Load;
VisibleChanged += fAuto_VisibleChanged;
ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Timer timer1;
private CtlAuto ctlAuto1;
private Panel panel1;
}
}