1.初始化项目。保险起见bin目录完整提交 2.基于现场代码为调整过的初始项目(此次提交还未解决代码差异问题)

This commit is contained in:
龚记林
2026-08-19 11:14:30 +08:00
parent b820c71956
commit 2b30644d28
382 changed files with 140652 additions and 1 deletions
@@ -0,0 +1,174 @@
using System;
using System.Drawing;
using System.Threading;
using Agv_Info;
using IO_Card_1730U;
namespace AGVSystem.Cls
{
// Token: 0x0200002C RID: 44
public class Param
{
// Token: 0x0400062D RID: 1581
public static bool Exit_Lg_Flag = false;
// Token: 0x0400062E RID: 1582
public static bool StartFlag = false;
// Token: 0x0400062F RID: 1583
public static string UserName = "";
// Token: 0x04000630 RID: 1584
public static string Password = "";
// Token: 0x04000631 RID: 1585
public static string UserName_temp = "";
// Token: 0x04000632 RID: 1586
public static string Password_temp = "";
// Token: 0x04000633 RID: 1587
public static Color backcolor;
// Token: 0x04000634 RID: 1588
public static int Icon_Size = 32;
// Token: 0x04000635 RID: 1589
public static bool Write_log;
// Token: 0x04000636 RID: 1590
public static bool Display_CrossID = true;
// Token: 0x04000637 RID: 1591
public static bool Hand1_St = false;
// Token: 0x04000638 RID: 1592
public static bool Hand2_St = false;
// Token: 0x04000639 RID: 1593
public static int Hand1_Agv_St = 0;
// Token: 0x0400063A RID: 1594
public static int Hand2_Agv_St = 0;
// Token: 0x0400063B RID: 1595
public static bool HandLoc1_Go = false;
// Token: 0x0400063C RID: 1596
public static bool HandLoc2_Go = false;
// Token: 0x0400063D RID: 1597
public static bool BY1_GO = false;
// Token: 0x0400063E RID: 1598
public static bool BY1_Leave = false;
// Token: 0x0400063F RID: 1599
public static bool BY2_GO = false;
// Token: 0x04000640 RID: 1600
public static bool BY2_Leave = false;
// Token: 0x04000641 RID: 1601
public static string map1_path = "";
// Token: 0x04000642 RID: 1602
public static string map2_path = "";
// Token: 0x04000643 RID: 1603
public static string map3_path = "";
// Token: 0x04000644 RID: 1604
public static bool map1_status = true;
// Token: 0x04000645 RID: 1605
public static bool map2_status = false;
// Token: 0x04000646 RID: 1606
public static bool map3_status = false;
// Token: 0x04000647 RID: 1607
public static bool Location_ID_Dispaly = true;
// Token: 0x04000648 RID: 1608
public static string connectStr = "";
// Token: 0x04000649 RID: 1609
public static string Pro_id = "";
// Token: 0x0400064A RID: 1610
public static string Pro_factory = "";
// Token: 0x0400064B RID: 1611
public static string Pro_remark = "";
// Token: 0x0400064C RID: 1612
public static int Day_Count = 15;
// Token: 0x0400064D RID: 1613
public static int Card1_Interval = 0;
// Token: 0x0400064E RID: 1614
public static int Card2_Interval = 0;
// Token: 0x0400064F RID: 1615
public static int Card3_Interval = 0;
// Token: 0x04000650 RID: 1616
public static IO_Card card1;
// Token: 0x04000651 RID: 1617
public static IO_Card card2;
// Token: 0x04000652 RID: 1618
public static IO_Card card3;
// Token: 0x04000653 RID: 1619
public static Thread[] th_GetData;
// Token: 0x04000654 RID: 1620
public static byte AGV_Qty = 0;
// Token: 0x04000655 RID: 1621
public static AgvInfo agvinfocls = new AgvInfo();
// Token: 0x04000656 RID: 1622
public static Type t;
// Token: 0x04000657 RID: 1623
public static bool Auto_Control = false;
// Token: 0x04000658 RID: 1624
public static bool Load_Path_His = false;
// Token: 0x04000659 RID: 1625
public static byte PLC_Type = 0;
// Token: 0x0400065A RID: 1626
public static bool Agv_Location_Auto_Display = false;
// Token: 0x0400065B RID: 1627
public static byte Map_ID = 1;
// Token: 0x0400065C RID: 1628
public static int Thread_Count = -1;
// Token: 0x0400065D RID: 1629
public static bool Frm_Ischild = false;
// Token: 0x0400065E RID: 1630
public static string Xj_Time1 = "";
// Token: 0x0400065F RID: 1631
public static string Xj_Time2 = "";
// Token: 0x04000660 RID: 1632
public static bool Exit_Flag = false;
// Token: 0x04000661 RID: 1633
public static int Wait_Time1 = 0;
// Token: 0x04000662 RID: 1634
public static int Wait_Time2 = 0;
}
}