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

@@ -15,6 +15,7 @@ namespace Project.ViewForm
{
public partial class fAuto : Form
{
AGVMapControl.MapControl mapctl;
public fAuto()
{
InitializeComponent();
@@ -25,6 +26,11 @@ namespace Project.ViewForm
this.ctlAuto1.Scean = CtlAuto.eScean.Progress;
else
this.ctlAuto1.Scean = CtlAuto.eScean.Normal;
this.mapctl = new AGVMapControl.MapControl();
this.mapctl.Dock = DockStyle.Fill;
this.mapctl.Visible = true;
this.mapctl.BackColor = Color.FromArgb(32, 32, 32);
this.panel1.Controls.Add(mapctl);
}
private void fAuto_Load(object sender, EventArgs e)
{