1257 界面修改

This commit is contained in:
ldw
2025-07-24 16:39:47 +08:00
parent d168ab7e58
commit e2ef116a73
14 changed files with 1697 additions and 1699 deletions
+6 -2
View File
@@ -1139,11 +1139,15 @@ namespace JinYuan.ControlCenters
if (flag)//产出 if (flag)//产出
{ {
strAddr = "D" + (1032 + hour); //strAddr = "D" + (1032 + hour);
//1257
strAddr = "D" + (1040 + hour);
} }
else//良品数 else//良品数
{ {
strAddr = "D" + (1062 + hour); // strAddr = "D" + (1062 + hour);
//1257
strAddr = "D" + (1070 + hour);
} }
int ProdNGQty = CommonMethods.PlcLink.ReadInt16(strAddr); int ProdNGQty = CommonMethods.PlcLink.ReadInt16(strAddr);
return ProdNGQty; return ProdNGQty;
+5 -5
View File
@@ -272,21 +272,21 @@ namespace JinYuan.ControlCenters
{ {
case MesResType.A:// 停线,设备报警停机 case MesResType.A:// 停线,设备报警停机
//listRes[i] = 10; //listRes[i] = 10;
listRes[i] = 3; listRes[i] = 2;
//m.Remark = MesMessage1; //m.Remark = MesMessage1;
break; break;
case MesResType.B: case MesResType.B:
//listRes[i] = 9; //listRes[i] = 9;
listRes[i] = 3; listRes[i] = 2;
//m.Remark = MesMessage1; //m.Remark = MesMessage1;
break; break;
case MesResType.C: case MesResType.C:
//listRes[i] = 1; //listRes[i] = 1;
listRes[i] = 3; listRes[i] = 2;
//m.Remark = MesMessage1; //m.Remark = MesMessage1;
break; break;
case MesResType.D://OK case MesResType.D:
listRes[i] = 1; listRes[i] = 2;
//m.Remark = MesMessage1; //m.Remark = MesMessage1;
break; break;
default: default:
+18 -10
View File
@@ -191,13 +191,16 @@ namespace JinYuan.ControlCenters
{ {
if (CommonMethods.Lst_DefectTypeQty.Count <= 0) if (CommonMethods.Lst_DefectTypeQty.Count <= 0)
{ {
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "极性检测不良", DataCount = 0 });
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "称重不良", DataCount = 0 });
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "铜极耳剪切不良", DataCount = 0 });
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "铝极耳剪切不良", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "CCD1-9", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "CCD10-14" , DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "CCD15-21" , DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "CCD22-27", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "极性检测不良", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "称重不良", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "铜极耳剪切不良", DataCount = 0 });
CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "铝极耳剪切不良", DataCount = 0 });
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "厚度不良", DataCount = 0 });
//CommonMethods.Lst_DefectTypeQty.Add(new ChartDataType { DataType = "焊前CCD正极耳顶面不良", DataCount = 0 });
} }
else //读取PLC数据 else //读取PLC数据
{ {
@@ -212,11 +215,16 @@ namespace JinYuan.ControlCenters
int ProdGRFIDNgQty = CommonMethods.PlcLink.ReadInt16("D1006");//铜极耳剪切不良 int ProdGRFIDNgQty = CommonMethods.PlcLink.ReadInt16("D1006");//铜极耳剪切不良
int ProdYLZNgQty = CommonMethods.PlcLink.ReadInt16("D1004");//铝极耳剪切不良 int ProdYLZNgQty = CommonMethods.PlcLink.ReadInt16("D1004");//铝极耳剪切不良
////從PLC讀取數據賦值給到NGList
//CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "极性检测不良").FirstOrDefault().DataCount = ProdDRFIDNgQty;
//CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "称重不良").FirstOrDefault().DataCount = ProdDXNgQty;
//CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "铜极耳剪切不良").FirstOrDefault().DataCount = ProdGRFIDNgQty;
//CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "铝极耳剪切不良").FirstOrDefault().DataCount = ProdYLZNgQty;
//從PLC讀取數據賦值給到NGList //從PLC讀取數據賦值給到NGList
CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "极性检测不良").FirstOrDefault().DataCount = ProdDRFIDNgQty; CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "CCD1-9").FirstOrDefault().DataCount = ProdDRFIDNgQty;
CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "称重不良").FirstOrDefault().DataCount = ProdDXNgQty; CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "CCD10-14").FirstOrDefault().DataCount = ProdDXNgQty;
CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "铜极耳剪切不良").FirstOrDefault().DataCount = ProdGRFIDNgQty; CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "CCD15-21").FirstOrDefault().DataCount = ProdGRFIDNgQty;
CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "铝极耳剪切不良").FirstOrDefault().DataCount = ProdYLZNgQty; CommonMethods.Lst_DefectTypeQty.Where(p => p.DataType == "CCD22-27").FirstOrDefault().DataCount = ProdYLZNgQty;
} }
catch (Exception ex) catch (Exception ex)
{ {
+7 -7
View File
@@ -74,16 +74,16 @@ namespace JinYuan.Helper
//10.22.160.144 //10.22.160.144
public string MQTTServerAddress = "127.0.0.1";//"10.22.161.1"; public string MQTTServerAddress = "127.0.0.1";//"10.22.161.1";
public int MQTTServerPort = 2883; public int MQTTServerPort = 2883;
public string ClientId = "601UPW01"; public string ClientId = "602VIW01";
//PPM主题 //PPM主题
public string Topic = "EVE/60J/TrackInOut/601UPW01";//进出站 public string Topic = "EVE/60J/TrackInOut/602VIW01";//进出站
public string Topic1 = "EVE/60J/CTPCTQ/601UPW01"; public string Topic1 = "EVE/60J/CTPCTQ/602VIW01";
public string BU_id = "EVE8BU"; public string BU_id = "EVE8BU";
public string District_id = "JM"; public string District_id = "JM";
public string Factory_id = "60J"; public string Factory_id = "602";
public string Production_line_id = "601L"; public string Production_line_id = "602L";
public string Work_center_id = "601EIE02"; public string Work_center_id = "602VIE01";
public string Device_name = "601UPW01"; public string Device_name = "602VIW01";
public string Action_time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); public string Action_time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
+27 -116
View File
@@ -122,126 +122,37 @@ namespace JinYuan.VirtualDataLibrary
strSql = @"SELECT CONVERT(varchar,[CSBYHASCANNINGTIME], 120) 时间 strSql = @"SELECT CONVERT(varchar,[CSBYHASCANNINGTIME], 120) 时间
,[CSBYHPROCESSNAME] 工序名 ,[CSBYHPROCESSNAME] 工序名
,[CSBYHSCHEDULE] 班次 ,[CSBYHSCHEDULE] 班次
,[A_B] 芯包
,[CSBYHCODEA] 卷芯码 ,[CSBYHCODEA] 卷芯码
,[CSBYHOUTSTATIONJUDGMENTRESULT] 出站判定结果 ,[CSBYHOUTSTATIONJUDGMENTRESULT] 出站判定结果
,[Remark] 备注 ,[Remark] 备注
,[RethrowNum] 复投次数 ,[RethrowNum] 复投次数
,[CSBYHWEIGHTRESULTA1] 芯包重量判定结果 ,[CCDResult1] 电芯CCD1结果
,[CSBYHTHICKNESSTESTJUDGERESULTA] 芯包测厚位移判定结果 ,[CCDResult2] 电芯CCD2结果
,[ThicknessPressureResult] 芯包测厚压力判定结果 ,[CCDResult3] 电芯CCD3结果
,[PreweldResult] 焊前CCD检测结果 ,[CCDResult4] 电芯CCD4结果
,[CSBYHPOLARITYRESULTA] 芯包极性检测结果 ,[CCDResult5] 电芯CCD5结果
,[CSBYHCUTADHESIONJUDGERESULTA] 电芯裁切粘连判定结果 ,[CCDResult6] 电芯CCD6结果
,[CSBYHCUTBURRJUDGERESULTA] 电芯裁切毛刺判定结果 ,[CCDResult7] 电芯CCD7结果
,[CSBYHSOLDERJUDGERESULTA] 芯包铜焊印位置判定结果 ,[CCDResult8] 电芯CCD8结果
,[AluminiumWeldPositionResult1] 芯包铝焊印位置判定结果 ,[CCDResult9] 电芯CCD9结果
,[PreweldResult] 焊前CCD检测结果 ,[CCDResult10] 电芯CCD10结果
,[CSBYHFRONTEARCRACKLEJUDGERESULTA] 芯包正面极耳撕裂判定结果 ,[CCDResult11] 电芯CCD11结果
,[CSBYHBACKEARCRACKLEJUDGERESULTA] 芯包背面极耳撕裂判定结果 ,[CCDResult12] 电芯CCD12结果
,[CSBYHFRONTEARFLODINGRESULTA] 芯包正面极耳翻折检测结果 ,[CCDResult13] 电芯CCD13结果
,[CSBYHBACKEARFLODINGRESULTA] 芯包背面极耳翻折检测结果 ,[CCDResult14] 电芯CCD14结果
,[CSBYHCUTADHESIONRESULTA] 电芯裁切粘连结果 ,[CCDResult15] 电芯CCD15结果
,[CSBYHCUTBURRRESULTA] 电芯裁切毛刺结果 ,[CCDResult16] 电芯CCD16结果
,[CSBYHFRONTEARCRACKLERESULTA] 芯包正面极耳撕裂裂纹检测结果 ,[CCDResult17] 电芯CCD17结果
,[CSBYHBACKEARCRACKLERESULTA] 芯包背面极耳撕裂裂纹检测结果 ,[CCDResult18] 电芯CCD18结果
,[CSBYHWEIGHTNOA1] 芯包称重工位号 ,[CCDResult19] 电芯CCD19结果
,[CSBYHTHICKNESSTESTSTATIONNOA] 芯包测厚工位号 ,[CCDResult20] 电芯CCD20结果
,[CSBYHTOOLNOA] 芯包治具号 ,[CCDResult21] 电芯CCD21结果
,[CSBYHCUWELDINGSTATIONNOA1] 芯包铜焊1工位号 ,[CCDResult22] 电芯CCD22结果
,[CSBYHCUWELDINGSTATIONNOA2] 芯包铜焊2工位号 ,[CCDResult23] 电芯CCD23结果
,[CSBYHCUWELDINGSTATIONNOA3] 芯包铜焊3工位号 ,[CCDResult24] 电芯CCD24结果
,[CSBYHCUWELDHEADCOUNTA1] 芯包铜焊1焊头次数 ,[CCDResult25] 电芯CCD25结果
,[CSBYHCUWELDHEADCOUNTA2] 芯包铜焊2焊头次数 ,[CCDResult26] 电芯CCD26结果
,[CSBYHCUWELDHEADCOUNTA3] 芯包铜焊3焊头次数 ,[CCDResult27] 电芯CCD27结果
,[CSBYHCUWELDBASECOUNTA1] 芯包铜焊1焊座次数
,[CSBYHCUWELDBASECOUNTA2] 芯包铜焊2焊座次数
,[CSBYHCUWELDBASECOUNTA3] 芯包铜焊3焊座次数
,[CSBYHALWELDINGSTATIONNOA1] 芯包铝焊1工位号
,[CSBYHALWELDINGSTATIONNOA2] 芯包铝焊2工位号
,[CSBYHALWELDINGSTATIONNOA3] 芯包铝焊3工位号
,[CSBYHALWELDHEADCOUNTA1] 芯包铝焊1焊头次数
,[CSBYHALWELDHEADCOUNTA2] 芯包铝焊2焊头次数
,[CSBYHALWELDHEADCOUNTA3] 芯包铝焊3焊头次数
,[CSBYHALWELDBASECOUNTA1] 芯包铝焊1焊座次数
,[CSBYHALWELDBASECOUNTA2] 芯包铝焊2焊座次数
,[CSBYHALWELDBASECOUNTA3] 芯包铝焊3焊座次数
,[CopperWeldHeadLife] 铜焊头预警寿命
,[CopperWeldSeatLife] 铜焊座预警寿命
,[AluminiumWeldHeadLife] 铝焊头预警寿命
,[AluminiumWeldSeatLife] 铝焊座预警寿命
,[CuttingKnifeLife] 裁切刀使用寿命
,[CSBYHCUTABCUTTERCOUNTA] 电芯铜极耳切刀使用次数
,[CSBYHALTABCUTTERCOUNTA] 电芯铝极耳切刀使用次数
,[CSBYHCUTABCUTTERNOA] 电芯铜极耳切刀编号
,[CSBYHALTABCUTTERNOA] 电芯铝极耳切刀编号
,[CSBYHINSTATIONTIME] 进站时间
,[CSBYHOUTSTATIONTIME] 出站时间
,[CSBYHWEIGHTA1] 芯包重量
,[CSBYHTHICKNESSTESTPRESSUREA] 芯包测厚压力实际值
,[CSBYHTHICKNESSTESTPRESSURESIZEA] 芯包测厚尺寸1
,[ThicknessMeasureDisplacement] 芯包测厚尺寸2
,[CSBYHCUTABLENGTHA] 电芯铜极极耳长度
,[CSBYHCUTABWIDTHA] 电芯铜极极耳宽度
,[CSBYHALTABLENGTHA] 电芯铝极极耳长度
,[CSBYHALTABWIDTHA] 电芯铝极极耳宽度
,[CSBYHTOPTOSOLDERDISTANCEA] 芯包铜顶部到焊印间距1
,[CSBYHTOPTOSOLDERDISTANCEA2] 芯包铜顶部到焊印间距2
,[AluminumToWeld1] 芯包铝顶部到焊印间距1
,[AluminumToWeld2] 芯包铝顶部到焊印间距2
,[CSBYHSOLDERTOEARDISTANCEA] 芯包焊印边缘到极耳边缘间距
,[CSBYHCUPRESSUREA1] 芯包铜焊1接压力实际值
,[CSBYHCUPOWERA1] 芯包铜焊1功率实际值
,[CSBYHCUENERGYA1] 芯包铜焊1能量实际值
,[CSBYHCUAMPLITUDEA1] 芯包铜焊1振幅实际值
,[CSBYHCUTIMEA1] 芯包铜焊1时间实际值
,[CSBYHCUPRESSUREA2] 芯包铜焊2压力实际值2
,[CSBYHCUPOWERA2] 芯包铜焊2功率A实际值
,[CSBYHCUENERGYA2] 芯包铜焊2接能量实际值
,[CSBYHCUAMPLITUDEA2] 芯包铜焊2振幅实际值
,[CSBYHCUTIMEA2] 芯包铜焊2时间实际值
,[CSBYHCUPRESSUREA3] 芯包铜焊3压力实际值
,[CSBYHCUPOWERA3] 芯包铜焊3功率A实际值
,[CSBYHCUENERGYA3] 芯包铜焊3能量实际值
,[CSBYHCUAMPLITUDEA3] 芯包铜焊3振幅实际值
,[CSBYHCUTIMEA3] 芯包铜焊3时间实际值
,[CSBYHALPRESSUREA1] 芯包铝焊1压力实际值
,[CSBYHALPOWERA1] 芯包铝焊1功率实际值
,[CSBYHALENERGYA1] 芯包铝焊1能量实际值
,[CSBYHALAMPLITUDEA1] 芯包铝焊1振幅实际值
,[CSBYHALTIMEA1] 芯包铝焊1时间实际值
,[CSBYHALPRESSUREA2] 芯包铝焊2压力实际值
,[CSBYHALPOWERA2] 芯包铝焊2功率实际值
,[CSBYHALENERGYA2] 芯包铝焊2能量实际值
,[CSBYHALAMPLITUDEA2] 芯包铝焊2振幅实际值
,[CSBYHALTIMEA2] 芯包铝焊2时间实际值
,[CSBYHALPRESSUREA3] 芯包铝焊3压力实际值
,[CSBYHALPOWERA3] 芯包铝焊3功率实际值
,[CSBYHALENERGYA3] 芯包铝焊3能量实际值
,[CSBYHALAMPLITUDEA3] 芯包铝焊3振幅实际值
,[CSBYHALTIMEA3] 芯包铝焊3时间实际值
,[CSBYHWEIGHTA1MAXSETTING] 芯包重量设定值最大值
,[CSBYHWEIGHTA1MINSETTING] 芯包重量设定值最小值
,[CSBYHTHICKNESSTESTPRESSUREMAXSETTINGA] 芯包侧厚压力设定最大值
,[CSBYHTHICKNESSTESTPRESSUREMINSETTINGA] 芯包侧厚压力设定最小值
,[CSBYHTHICKNESSTESTPRESSUREMAXSIZEA] 芯包侧厚最大尺寸
,[CSBYHTHICKNESSTESTPRESSUREMINSIZEA] 芯包侧厚最小尺寸
,[CSBYHCUWELDINGPRESSUREMAXSETTING1] 铜焊1压力设定最大值
,[CSBYHCUWELDINGPRESSUREMINSETTING] 铜焊1压力设定最小值
,[CSBYHCUWELDINGPOWERMAXSETTING1] 铜焊1功率设定值最大值
,[CSBYHCUWELDINGPOWERMINSETTING1] 铜焊1功率设定值最小值
,[CSBYHCUWELDINGENERGYMAXSETTING1] 铜焊1能量设定值最大值
,[CSBYHCUWELDINGENERGYMINSETTING1] 铜焊1能量设定值最小值
,[CSBYHCUWELDINGAMPLITUDEMAXSETTING1] 铜焊1振幅设定值最大值
,[CSBYHCUWELDINGAMPLITUDEMINSETTING1] 铜焊1振幅设定值最小值
,[CSBYHALWELDINGPRESSUREMAXSETTING1] 铝焊1压力设定值最大值
,[CSBYHALWELDINGPRESSUREMINSETTING] 铝焊1压力设定值最小值
,[CSBYHALWELDINGPOWERMAXSETTING1] 铝焊1功率设定值最大值
,[CSBYHALWELDINGPOWERMINSETTING1] 铝焊1功率设定值最小值
,[CSBYHALWELDINGENERGYMAXSETTING1] 铝焊1能量设定值最大值
,[CSBYHALWELDINGENERGYMINSETTING1] 铝焊1能量设定值最小值
,[CSBYHALWELDINGAMPLITUDEMAXSETTING1] 铝焊1振幅设定值最大值
,[CSBYHALWELDINGAMPLITUDEMINSETTING1] 铝焊1振幅设定值最小值
,[Result] 结果 ,[Result] 结果
,case when [Flag]=1 then '已上传' else '未上传' end 上传状态 ,case when [Flag]=1 then '已上传' else '未上传' end 上传状态
FROM [dbo].[BGearEntity] where CSBYHASCANNINGTIME >= '" + strDate1 + "' and CSBYHASCANNINGTIME <= '" + strDate2 + "' "; FROM [dbo].[BGearEntity] where CSBYHASCANNINGTIME >= '" + strDate1 + "' and CSBYHASCANNINGTIME <= '" + strDate2 + "' ";
+64 -64
View File
@@ -29,12 +29,12 @@
private void InitializeComponent() private void InitializeComponent()
{ {
this.components = new System.ComponentModel.Container(); this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDataMonitor)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDataMonitor));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.groupBoxEX3 = new JinYuan.ControlLib.GroupBoxEX(); this.groupBoxEX3 = new JinYuan.ControlLib.GroupBoxEX();
@@ -62,7 +62,6 @@
this.rtb_Info = new System.Windows.Forms.RichTextBox(); this.rtb_Info = new System.Windows.Forms.RichTextBox();
this.groupBoxEX5 = new JinYuan.ControlLib.GroupBoxEX(); this.groupBoxEX5 = new JinYuan.ControlLib.GroupBoxEX();
this.dgvBlankingData = new System.Windows.Forms.DataGridView(); this.dgvBlankingData = new System.Windows.Forms.DataGridView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -104,6 +103,7 @@
this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column102 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column102 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout();
this.groupBoxEX3.SuspendLayout(); this.groupBoxEX3.SuspendLayout();
this.groupBoxEX2.SuspendLayout(); this.groupBoxEX2.SuspendLayout();
@@ -224,7 +224,7 @@
// //
this.btSatrt.BackNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0))))); this.btSatrt.BackNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
this.btSatrt.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btSatrt.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btSatrt.Location = new System.Drawing.Point(42, 4); this.btSatrt.Location = new System.Drawing.Point(42, 105);
this.btSatrt.Margin = new System.Windows.Forms.Padding(2); this.btSatrt.Margin = new System.Windows.Forms.Padding(2);
this.btSatrt.Name = "btSatrt"; this.btSatrt.Name = "btSatrt";
this.btSatrt.Padding = new System.Windows.Forms.Padding(2); this.btSatrt.Padding = new System.Windows.Forms.Padding(2);
@@ -324,14 +324,14 @@
this.dgvFeedingData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); this.dgvFeedingData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
this.dgvFeedingData.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dgvFeedingData.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dgvFeedingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dgvFeedingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle13.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255))))); dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvFeedingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; this.dgvFeedingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
this.dgvFeedingData.ColumnHeadersHeight = 34; this.dgvFeedingData.ColumnHeadersHeight = 34;
this.dgvFeedingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.dgvFeedingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dgvFeedingData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dgvFeedingData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
@@ -341,14 +341,14 @@
this.InResult, this.InResult,
this.Column5, this.Column5,
this.Column139}); this.Column139});
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32))))); dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80))))); dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80)))));
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.White; dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.White;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvFeedingData.DefaultCellStyle = dataGridViewCellStyle2; this.dgvFeedingData.DefaultCellStyle = dataGridViewCellStyle14;
this.dgvFeedingData.Dock = System.Windows.Forms.DockStyle.Fill; this.dgvFeedingData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvFeedingData.EnableHeadersVisualStyles = false; this.dgvFeedingData.EnableHeadersVisualStyles = false;
this.dgvFeedingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(77)))), ((int)(((byte)(147))))); this.dgvFeedingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(77)))), ((int)(((byte)(147)))));
@@ -358,14 +358,14 @@
this.dgvFeedingData.Name = "dgvFeedingData"; this.dgvFeedingData.Name = "dgvFeedingData";
this.dgvFeedingData.ReadOnly = true; this.dgvFeedingData.ReadOnly = true;
this.dgvFeedingData.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dgvFeedingData.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(40)))), ((int)(((byte)(86))))); dataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(40)))), ((int)(((byte)(86)))));
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle3.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle15.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80))))); dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80)))));
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White; dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.White;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvFeedingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle3; this.dgvFeedingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle15;
this.dgvFeedingData.RowHeadersVisible = false; this.dgvFeedingData.RowHeadersVisible = false;
this.dgvFeedingData.RowHeadersWidth = 60; this.dgvFeedingData.RowHeadersWidth = 60;
this.dgvFeedingData.RowTemplate.Height = 23; this.dgvFeedingData.RowTemplate.Height = 23;
@@ -486,14 +486,14 @@
this.dgvBlankingData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); this.dgvBlankingData.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
this.dgvBlankingData.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dgvBlankingData.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dgvBlankingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dgvBlankingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle16.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle4.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle16.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255))))); dataGridViewCellStyle16.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvBlankingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4; this.dgvBlankingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle16;
this.dgvBlankingData.ColumnHeadersHeight = 34; this.dgvBlankingData.ColumnHeadersHeight = 34;
this.dgvBlankingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.dgvBlankingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dgvBlankingData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dgvBlankingData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
@@ -538,14 +538,14 @@
this.Column35, this.Column35,
this.Column102, this.Column102,
this.Column22}); this.Column22});
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32))))); dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle5.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80))))); dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80)))));
dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.White; dataGridViewCellStyle17.SelectionForeColor = System.Drawing.Color.White;
dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvBlankingData.DefaultCellStyle = dataGridViewCellStyle5; this.dgvBlankingData.DefaultCellStyle = dataGridViewCellStyle17;
this.dgvBlankingData.Dock = System.Windows.Forms.DockStyle.Fill; this.dgvBlankingData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvBlankingData.EnableHeadersVisualStyles = false; this.dgvBlankingData.EnableHeadersVisualStyles = false;
this.dgvBlankingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(77)))), ((int)(((byte)(147))))); this.dgvBlankingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(77)))), ((int)(((byte)(147)))));
@@ -555,14 +555,14 @@
this.dgvBlankingData.Name = "dgvBlankingData"; this.dgvBlankingData.Name = "dgvBlankingData";
this.dgvBlankingData.ReadOnly = true; this.dgvBlankingData.ReadOnly = true;
this.dgvBlankingData.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dgvBlankingData.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(40)))), ((int)(((byte)(86))))); dataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(40)))), ((int)(((byte)(86)))));
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 10.5F); dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 10.5F);
dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle18.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80))))); dataGridViewCellStyle18.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(20)))), ((int)(((byte)(80)))));
dataGridViewCellStyle6.SelectionForeColor = System.Drawing.Color.White; dataGridViewCellStyle18.SelectionForeColor = System.Drawing.Color.White;
dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False; dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvBlankingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle6; this.dgvBlankingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle18;
this.dgvBlankingData.RowHeadersVisible = false; this.dgvBlankingData.RowHeadersVisible = false;
this.dgvBlankingData.RowHeadersWidth = 60; this.dgvBlankingData.RowHeadersWidth = 60;
this.dgvBlankingData.RowTemplate.Height = 23; this.dgvBlankingData.RowTemplate.Height = 23;
@@ -571,14 +571,6 @@
this.dgvBlankingData.TabIndex = 10; this.dgvBlankingData.TabIndex = 10;
this.dgvBlankingData.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvBlankingData_CellContentClick); this.dgvBlankingData.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvBlankingData_CellContentClick);
// //
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "info.png");
this.imageList1.Images.SetKeyName(1, "error.png");
this.imageList1.Images.SetKeyName(2, "warning.png");
//
// dataGridViewTextBoxColumn1 // dataGridViewTextBoxColumn1
// //
this.dataGridViewTextBoxColumn1.DataPropertyName = "ChannelNo"; this.dataGridViewTextBoxColumn1.DataPropertyName = "ChannelNo";
@@ -889,6 +881,14 @@
this.Column22.ReadOnly = true; this.Column22.ReadOnly = true;
this.Column22.Width = 150; this.Column22.Width = 150;
// //
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "info.png");
this.imageList1.Images.SetKeyName(1, "error.png");
this.imageList1.Images.SetKeyName(2, "warning.png");
//
// FrmDataMonitor // FrmDataMonitor
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
+4 -1
View File
@@ -120,6 +120,9 @@
<metadata name="lVConfigRange.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="lVConfigRange.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
<metadata name="lVConfigRange.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Column4.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="Column4.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
@@ -194,7 +197,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABE ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABE
DQAAAk1TRnQBSQFMAgEBAwEAAUABAgFAAQIBEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA DQAAAk1TRnQBSQFMAgEBAwEAAUgBAgFIAQIBEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA
AwABEAMAAQEBAAEgBgABEC4AAxUBHQMkATQDBQEGKAADHQEpAl4BZwHwATUBNgHPAf8BNQE2Ac8B/wE1 AwABEAMAAQEBAAEgBgABEC4AAxUBHQMkATQDBQEGKAADHQEpAl4BZwHwATUBNgHPAf8BNQE2Ac8B/wE1
ATYBzwH/ATUBNgHPAf8BNQE2Ac8B/wNOAZagAAMTARkDZQHlA+YB/wPmAf8D5gH/A+YB/wPmAf8DRwGA ATYBzwH/ATUBNgHPAf8BNQE2Ac8B/wNOAZagAAMTARkDZQHlA+YB/wPmAf8D5gH/A+YB/wPmAf8DRwGA
HAACUwFUAaoBNQE2Ac8B/wE1ATYBzwH/ATUBNgHPAf8BNQE2Ac8B/wE1ATYBzwH/ATUBNgHPAf8BNQE2 HAACUwFUAaoBNQE2Ac8B/wE1ATYBzwH/ATUBNgHPAf8BNQE2Ac8B/wE1ATYBzwH/ATUBNgHPAf8BNQE2
+12 -12
View File
@@ -58,6 +58,7 @@
this.btn_right = new System.Windows.Forms.Button(); this.btn_right = new System.Windows.Forms.Button();
this.btn_Left = new System.Windows.Forms.Button(); this.btn_Left = new System.Windows.Forms.Button();
this.TopPanel = new System.Windows.Forms.Panel(); this.TopPanel = new System.Windows.Forms.Panel();
this.nav_DataMonitor = new JinYuan.ControlLib.NaviButton2();
this.btnScale = new System.Windows.Forms.Button(); this.btnScale = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel2 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel();
@@ -68,7 +69,6 @@
this.nav_SetSystem = new JinYuan.ControlLib.NaviButton2(); this.nav_SetSystem = new JinYuan.ControlLib.NaviButton2();
this.nav_System = new JinYuan.ControlLib.NaviButton2(); this.nav_System = new JinYuan.ControlLib.NaviButton2();
this.nav_Monitor = new JinYuan.ControlLib.NaviButton2(); this.nav_Monitor = new JinYuan.ControlLib.NaviButton2();
this.nav_DataMonitor = new JinYuan.ControlLib.NaviButton2();
this.nav_AlarmLog = new JinYuan.ControlLib.NaviButton2(); this.nav_AlarmLog = new JinYuan.ControlLib.NaviButton2();
this.nav_User = new JinYuan.ControlLib.NaviButton2(); this.nav_User = new JinYuan.ControlLib.NaviButton2();
this.nav_HistotryData = new JinYuan.ControlLib.NaviButton2(); this.nav_HistotryData = new JinYuan.ControlLib.NaviButton2();
@@ -354,6 +354,7 @@
// //
resources.ApplyResources(this.TopPanel, "TopPanel"); resources.ApplyResources(this.TopPanel, "TopPanel");
this.TopPanel.BackColor = System.Drawing.Color.Transparent; this.TopPanel.BackColor = System.Drawing.Color.Transparent;
this.TopPanel.Controls.Add(this.nav_DataMonitor);
this.TopPanel.Controls.Add(this.btnScale); this.TopPanel.Controls.Add(this.btnScale);
this.TopPanel.Controls.Add(this.pictureBox1); this.TopPanel.Controls.Add(this.pictureBox1);
this.TopPanel.Controls.Add(this.panel2); this.TopPanel.Controls.Add(this.panel2);
@@ -362,7 +363,6 @@
this.TopPanel.Controls.Add(this.nav_SetSystem); this.TopPanel.Controls.Add(this.nav_SetSystem);
this.TopPanel.Controls.Add(this.nav_System); this.TopPanel.Controls.Add(this.nav_System);
this.TopPanel.Controls.Add(this.nav_Monitor); this.TopPanel.Controls.Add(this.nav_Monitor);
this.TopPanel.Controls.Add(this.nav_DataMonitor);
this.TopPanel.Controls.Add(this.nav_AlarmLog); this.TopPanel.Controls.Add(this.nav_AlarmLog);
this.TopPanel.Controls.Add(this.nav_User); this.TopPanel.Controls.Add(this.nav_User);
this.TopPanel.Controls.Add(this.nav_HistotryData); this.TopPanel.Controls.Add(this.nav_HistotryData);
@@ -371,6 +371,16 @@
this.TopPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseDown); this.TopPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseDown);
this.TopPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseMove); this.TopPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseMove);
// //
// nav_DataMonitor
//
resources.ApplyResources(this.nav_DataMonitor, "nav_DataMonitor");
this.nav_DataMonitor.BackColor = System.Drawing.Color.Transparent;
this.nav_DataMonitor.IsLeft = true;
this.nav_DataMonitor.IsSelected = false;
this.nav_DataMonitor.Name = "nav_DataMonitor";
this.nav_DataMonitor.TitleName = "数据监控";
this.nav_DataMonitor.Click += new System.EventHandler(this.CommonNaviButton_Click);
//
// btnScale // btnScale
// //
resources.ApplyResources(this.btnScale, "btnScale"); resources.ApplyResources(this.btnScale, "btnScale");
@@ -461,16 +471,6 @@
this.nav_Monitor.TitleName = "集中监控"; this.nav_Monitor.TitleName = "集中监控";
this.nav_Monitor.Click += new System.EventHandler(this.CommonNaviButton_Click); this.nav_Monitor.Click += new System.EventHandler(this.CommonNaviButton_Click);
// //
// nav_DataMonitor
//
resources.ApplyResources(this.nav_DataMonitor, "nav_DataMonitor");
this.nav_DataMonitor.BackColor = System.Drawing.Color.Transparent;
this.nav_DataMonitor.IsLeft = true;
this.nav_DataMonitor.IsSelected = false;
this.nav_DataMonitor.Name = "nav_DataMonitor";
this.nav_DataMonitor.TitleName = "数据监控";
this.nav_DataMonitor.Click += new System.EventHandler(this.CommonNaviButton_Click);
//
// nav_AlarmLog // nav_AlarmLog
// //
resources.ApplyResources(this.nav_AlarmLog, "nav_AlarmLog"); resources.ApplyResources(this.nav_AlarmLog, "nav_AlarmLog");
+1105 -1105
View File
File diff suppressed because it is too large Load Diff
+284 -211
View File
@@ -121,10 +121,13 @@
<data name="lbl_Title.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbl_Title.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbl_Title.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 51</value>
</data>
<data name="label7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="label7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="label7.Location" type="System.Drawing.Point, System.Drawing"> <data name="label7.Location" type="System.Drawing.Point, System.Drawing">
<value>1697, 26</value> <value>1697, 26</value>
</data> </data>
@@ -197,12 +200,24 @@
<data name="lbl_LoginLevel.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbl_LoginLevel.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="panel1.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 4</value>
</data>
<data name="btn_right.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btn_right.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="btn_right.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 34</value>
</data>
<data name="btn_Left.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btn_Left.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="btn_Left.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 34</value>
</data>
<data name="MiddlePanel.Size" type="System.Drawing.Size, System.Drawing">
<value>1386, 53</value>
</data>
<data name="TopPanel.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="TopPanel.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAABzkAAACSCAYAAADW+HcrAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAABzkAAACSCAYAAADW+HcrAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -2142,6 +2157,217 @@
m4ac2rRpG65NWhNQSik13IT/3/8PCOSMsgDdHSQAAAAASUVORK5CYII= m4ac2rRpG65NWhNQSik13IT/3/8PCOSMsgDdHSQAAAAASUVORK5CYII=
</value> </value>
</data> </data>
<data name="nav_DataMonitor.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
dlDfetVWdct1a5XNN6wUo1osFaJuW/SP+nNMv6i75n2j/jLrvRG5b/ZJpAgM/vsK1sV06BK/SZHp0KXG
8UWp+8e2WikntNmrpbSO08hs9RrCecrUSbkWqmAVegzvQcESFaSeDd506nzQszT8/x4hcXQVmiY1Zmm8
XOCqFb2ettadmbUCl2RxZqtkNQ0miWfPU5NE/7xnk8QfIVPvBKnzoJ6GSWJlGki9A6SO8cqq2ghSrwGp
V0A9vRSkXmiXKpxjnUxMt0iqm2i2oz4IpR6xvdHLaFuTq35Ms/OQ6EsiqTdfs1KKum6pGHXdol9ki1nf
jbfMekfeMvto/Z3RFB+uv2OCUAK8r1ASdUWacG8CfG3RuYmkxu4HtvRwTqOaQut8bDwX3t90QpnS2BmE
UXg+YbQg3wu86dT5oLI0/O8eIXG8QGhKajwRLPA71dP6czhbh85mkZPEwW4Lar3yBGd9i+tOwSQRpT4E
Uv8MUu+FSWIxTBJzQepsP/Ek0ZtVFQ2TxEiQejVMEr8Fqb90TKsNB6lng9TTQOoJMEkMHBXf6IuTxE5S
b7liM2jzVSuljdcsBmy8NqbfhhtmyCfrW0Z/tO6myYcRt4wp/h1xa5SMV8sH624bY7LASWKfqPvmWOrh
PGZgUqujWlqrqzbrqa8e72mwxle7vpM3DhIMdFxEruoahPGGgzedOh/Y8YD/9giJQ5rQCPwwvfSg19MG
gCngBCeZQi664GpRyPcCELpT50M8SZTW+YjvbucDpdaLuehEl1p501VLlFp+w3VS6j7rW0wpsbvKLePV
0WvdbRO8En4ceRfq6Qfm/WMejVWOb7XDlqpGxlNPnewn/niTmWpoQgzOtdQZq8jOBziD3bNnnQ8sO+C/
PULikCYzBfwCXWp6PW0EmAPjhs7js7QCIslJ4mcLE6rEiy7/0PmoSiY7H1lVm6V1Pl4kNZWpNbZctlXb
fMVq4KZrY6lsTYlNyU0JLuPV03vDTVMs9XAOgxN0xdhHVgPjnzqoJz9x1c58wtBlPw4wzHk8WcVnFR/d
0B6/FTsfa8GZTp0PQELS7iBxSBOZDvwSVXrgSeAnTAnQAvASYqkatIUxdF4OX819OZmpLdYW0jsfOEmU
1vnIfE7nQ2o773lSa229bDd48xVrzNZ0sRUir5sjKDhdchmvEJi/IPIbb5krbr5jqRx9zwrXCXBVVyv1
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
H2p7AaDigHD8AAAAAElFTkSuQmCC
</value>
</data>
<data name="nav_DataMonitor.Location" type="System.Drawing.Point, System.Drawing">
<value>270, 43</value>
</data>
<data name="btnScale.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="btnScale.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAAMEAAAAtCAYAAAAXxA9lAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m iVBORw0KGgoAAAANSUhEUgAAAMEAAAAtCAYAAAAXxA9lAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
@@ -2209,18 +2435,36 @@
<data name="btnScale.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnScale.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="btnScale.Location" type="System.Drawing.Point, System.Drawing">
<value>1317, 9</value>
</data>
<data name="pictureBox1.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="pictureBox1.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="pictureBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>-264, -1</value>
</data>
<data name="label3.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="label3.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="label3.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 41</value>
</data>
<data name="label3.Text" xml:space="preserve"> <data name="label3.Text" xml:space="preserve">
<value>60工厂</value> <value>602</value>
</data> </data>
<data name="lbl_TitleBar.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbl_TitleBar.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="lbl_TitleBar.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 54</value>
</data>
<data name="lbl_TitleBar.Text" xml:space="preserve">
<value>外观检测监测系统</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>16, 64</value>
</data>
<data name="nav_CPK.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_CPK.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -2429,9 +2673,16 @@
H2p7AaDigHD8AAAAAElFTkSuQmCC H2p7AaDigHD8AAAAAElFTkSuQmCC
</value> </value>
</data> </data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="nav_CPK.Visible" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="label4.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="label4.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="label4.Location" type="System.Drawing.Point, System.Drawing">
<value>-212, -2</value>
</data>
<data name="nav_SetSystem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_SetSystem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -2639,6 +2890,9 @@
P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII= P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII=
</value> </value>
</data> </data>
<data name="nav_SetSystem.Location" type="System.Drawing.Point, System.Drawing">
<value>900, 43</value>
</data>
<data name="nav_System.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_System.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -2846,6 +3100,9 @@
P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII= P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII=
</value> </value>
</data> </data>
<data name="nav_System.Location" type="System.Drawing.Point, System.Drawing">
<value>1046, 43</value>
</data>
<data name="nav_Monitor.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_Monitor.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -3055,215 +3312,7 @@
</value> </value>
</data> </data>
<data name="nav_Monitor.Location" type="System.Drawing.Point, System.Drawing"> <data name="nav_Monitor.Location" type="System.Drawing.Point, System.Drawing">
<value>44, 39</value> <value>44, 43</value>
</data>
<data name="nav_DataMonitor.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
dlDfetVWdct1a5XNN6wUo1osFaJuW/SP+nNMv6i75n2j/jLrvRG5b/ZJpAgM/vsK1sV06BK/SZHp0KXG
8UWp+8e2WikntNmrpbSO08hs9RrCecrUSbkWqmAVegzvQcESFaSeDd506nzQszT8/x4hcXQVmiY1Zmm8
XOCqFb2ettadmbUCl2RxZqtkNQ0miWfPU5NE/7xnk8QfIVPvBKnzoJ6GSWJlGki9A6SO8cqq2ghSrwGp
V0A9vRSkXmiXKpxjnUxMt0iqm2i2oz4IpR6xvdHLaFuTq35Ms/OQ6EsiqTdfs1KKum6pGHXdol9ki1nf
jbfMekfeMvto/Z3RFB+uv2OCUAK8r1ASdUWacG8CfG3RuYmkxu4HtvRwTqOaQut8bDwX3t90QpnS2BmE
UXg+YbQg3wu86dT5oLI0/O8eIXG8QGhKajwRLPA71dP6czhbh85mkZPEwW4Lar3yBGd9i+tOwSQRpT4E
Uv8MUu+FSWIxTBJzQepsP/Ek0ZtVFQ2TxEiQejVMEr8Fqb90TKsNB6lng9TTQOoJMEkMHBXf6IuTxE5S
b7liM2jzVSuljdcsBmy8NqbfhhtmyCfrW0Z/tO6myYcRt4wp/h1xa5SMV8sH624bY7LASWKfqPvmWOrh
PGZgUqujWlqrqzbrqa8e72mwxle7vpM3DhIMdFxEruoahPGGgzedOh/Y8YD/9giJQ5rQCPwwvfSg19MG
gCngBCeZQi664GpRyPcCELpT50M8SZTW+YjvbucDpdaLuehEl1p501VLlFp+w3VS6j7rW0wpsbvKLePV
0WvdbRO8En4ceRfq6Qfm/WMejVWOb7XDlqpGxlNPnewn/niTmWpoQgzOtdQZq8jOBziD3bNnnQ8sO+C/
PULikCYzBfwCXWp6PW0EmAPjhs7js7QCIslJ4mcLE6rEiy7/0PmoSiY7H1lVm6V1Pl4kNZWpNbZctlXb
fMVq4KZrY6lsTYlNyU0JLuPV03vDTVMs9XAOgxN0xdhHVgPjnzqoJz9x1c58wtBlPw4wzHk8WcVnFR/d
0B6/FTsfa8GZTp0PQELS7iBxSBOZDvwSVXrgSeAnTAnQAvASYqkatIUxdF4OX819OZmpLdYW0jsfOEmU
1vnIfE7nQ2o773lSa229bDd48xVrzNZ0sRUir5sjKDhdchmvEJi/IPIbb5krbr5jqRx9zwrXCXBVVyv1
kYcu65HfUM7DkGHcv0IVHcN/xluR9aen4CRxOXjTqfMBdJK0O0gc0iSmA7+EL0hJTfWnVYAhALnooj0t
eS6uEKnYzSMGmIUQDvGHyqD8OA1SY+fjD5D6V6rz4c+tzgepOc/tfEhp51FSY02NE0XsfhjENrvoxlx0
pLI1JfagKJHcWI6g4JTkMl49ODEX0WI5aOtt68Hb7tqrJzxw0k5+6Kab/rfPUNbfgcN5f08xSmkKH2A5
7bSC2STCMIxLGC0sDAVvsIxFp3oktcQhTeKuwC/iC+IL4wl0nSTiEyR2urOyfsC1/AEWUwkV2xlCt+xz
z5bHu3Q+Sp7T+UCpI0DqlbR2XlhXqamWHi6+GGK2jm12psTGjI1yY42NgmNJQkou47WBXSdsp6puuWGt
EXPTXjPuT0edxPuuBqn3GIaZ95jDOfcnfsa/P8Mw6tSK/qYhVUrWswh8tMwwPH8ceEN1PqikKSHsPyFx
SBNYGvDLlNTUJLE/oAroA7h276A/lxOLd13hc2fqnl8IvPIFZ8WTxJfpfNDbeSthkviVWGoyU2NNTXU/
TBIa/MkVRShBMFtTYuOkUQfERrm1oy/ZIyg5JbqM14Nm9BU7XNHVjr3uoBPX4ox3TA5NusswSr/LHMG6
G/I55+70Ubl3w/SWF0dDWSoc5LyEvM9bfw4bE2KnzgcgIe2LkDi6ivsi4A/QpcY6CDsf6gB5qyngZBDG
T9OZFE9OEvUnr62hOh/kJPFFnQ9WZTytnUf1qKVJPRFXFKlsjauKKDauLGJ9jXJjOYKCY62NklNgJpfx
6iHHN/aSM95/YxB3xdUw4Ya7UVIL49PUO8zPMu+EjMq+M82YfyfMNO/OF1ozt2ejGxo+q3GSGAnOdOp8
ABLSvgiJQ5q4LwL+CCU1ngRK/eyBAACf9XOFSWK2pv86UupRS1OpzscJyNTU8ninzgddanE7j+xRo9Ti
8mMx1f3AxRfLJGIyliC4AIP3f6DYmLEpuSnBMXsjKLqM18+wuGb34fHNnp/uuMz4LPGqz8iU6wGj0m9O
GJ11c5op59Yc85xbiy3yby1X81/1I7oxZEIstvNWgzP/9SRR4pAm7T8BfwhfFD9RKDW1koidj0+BsWrj
Y5jwc4Sq61dEf+NAYuzGXeXY+fAtrDsu7nzg8ji989H1RiZKarL8wIkidj/Eiy9zqGyNS+Wk2In1wZix
8T4QlBsnj5TgdLD2lvHqoY2x9+cJF7zxVmDjpGamSfLlYNO0q5PMM2+EjmHfCLPg3fjCMrdluSX/csRA
lwXHsDTFh7GHLSxcAt78V1JLHF1lfRngD+ELUlLT78zDzsfngLX29NRwLP7x6eAB5hOFTklHqM7Hsc6d
j643MklIHUG19HDxBbL1QixBcFURxJ4hFnsy1tcoN5YjmLlRcAQzOIKyy3h9UOM8OrEhAO9vR8yTmyZa
pF2capl5edZY1tV5YzlXl1jzr31jk3d9tUV6dYyi1fQyckuEMD4+GDARvOl250PikCbsywB/DF8QXxhP
AE8EOx+DAGp53E5vFivCMIxH4EkPtJ9V684tP0vvfDBzBb9C6YGdD9GNTOzKTlKLampRSw+lFq8ofiXK
1oIFNLFnYimCcmNHRCz4RJScEl3G64cab8vkukmWKfVTxqY2TLNOa5xlndE81zbr0kJb9uWldrzLK+xy
r6yxz7+6yTTmcLqCWYhAtCVCIWE4P88GvOnWJFHikCbrywJ/kJKa6nzQl8fFnQ9uHLnHB1xe8MEARqGQ
Wh6nOh+/kFJzyRuZ8lFqAKWmJoox2KfGFUVxXY0lCGbrpSg2Zmysr7HFh+UI1tmk4ClEKEpOY5qM145o
rGHsbVKJmbZpxGy79Low+4yGBfZZF5bgg9KOnIurHPmX1jrmXd6M+7eM/L6oEBfksDwFpwidGRnYOXtp
qSWOrpJ2F/ijdKmxDiL39QCozoezQRg/HScAOBEYGrqxhv5gAFPU+fg5gF+zD4TGHjUlNQtbeiB2gnjx
ZTPe+yHO1t/jhBEyNor9FZYilNxYZ6PglOTAXARll/F6EY81jvk8HH+IxQLHdOFi50ziS+fMumUu2Q0r
XdgX1rjwmiJdcpqjXfIvJrgUXko1nJfwK7qBjYRhi4o2gDPo0Ut1PiQOaZJ2B68fm/EP44vii0vrfFgA
rkPn8dnYqsETN1mWWUm/54OSGkqPfQHcKszUBf6cSrL7AVLj4ksiVYJgtqaJ/YO4FPkW5YbMvQwzN/Cl
s1hyseiLu7BIxivj2bhS441jjzHAWIzLECwblyn4Bh+SdmMRa9zY9evduI2b3fgXtrnlNiW6FjSnuxY1
c7WDfziFmRpbvlB+rAJnXmqSKHFIk7Q70ISmpMbLBf0eaux8WKlPjBsPP09gUx3X9a237CM7H3jPB0wS
jzBzaw8F5NRQUu8K4FYWMkVSs0HqDCAFszWIvU0sdhROGsWlSASWIyg3gmWJWHLkG5RdLLyM1wQ1xuLx
/hZjIIpHzfceWdVrPLJq1nqwaiM9s4WbPTl1sZ68+gTP3IZUj7xGlnthE39cDlGs5raovP/oZ1sihIM3
WMa+UGqJo6ug3QWFfo7UVOdDB8DOh82Q0PQl2PnA5U/FMZOELmknzuPCi0jq2qMwSUSpfwngVf1ISs0h
pc5lsiu4/uwKMlsDyWKxIWNXxmA3hEHKLcrcnlnV6/FmJ8zgYtHXoOwy3gg41jjmazEGGAuMCbDJi1W9
mcGqjmZk18R5c2p3MHhEKoNfl8XIred5FTTmexZd2OmUde6AsvV0gaLlNGpLhADwptODAcCbEZomNb4w
ngC1PE7vfNjrzWZH4g0qeKPKIIc5tZ78ynPPkfonkHpPAKeiGCgAqfkARyx2OoD1dRIltyhzV8aSk0iU
nFW1BUTfjLKL2STjtYPjDOLC2EMM8EqKMcHY4D3wwA5fdnWKD6cm3YcrYPnwhFxyx628+hJGYcMer+LG
A7bbfzuqYBYiVLGfj4suxND5uTgPe+4kUeKQJml3oAvdRWpqktj1wQBHg7ncHfqhqWTpoe23TOBTRJz1
K6orhXr6BNTTRwNyBb8H8KsPBvKqDgRyK/cFciogW1cUAflisTFjZwNZlNwAliQo+A7ERyR6vFh2GW8O
ELcygYoDxgRjA6ThHZY4L8K7Lf251Xx/3Jgop7bYN5fY7ZNft9+7qP5XRknj72YRhaVYT6u5f4NSb9GY
FI8OPZskfmA8Xw6B/y22mHZIk7Q7dBX6OVJTnQ98MAA/cS4GYfysIeO3kpPEYbO3YOfjnF8RUcosEJ4E
qY9Blj4cyK/+LZBX+TNI/VMgt2IviL0TQLELAtgVWIqg3DyAjZkbBRdLjjU3io4lCoLCy3j9UOONgLwV
meKYsDBG4ljxoYzMI+dI+MwpX7DHL7f2J7984hfcL9G7pOEoY1fj8U8XJlSgG1oBG/F207ngTKdJ4hsV
GsEXBfAThZ+sZ7uaArTORw4bH8/BEzddyakipS4kpT4VkCc4HphTcwSkPhTEqzwYxK04APwEQu8J5JTv
BkrEchcGsMvzUXAghxww0cBxAY4YHEwZbwYcbxx7kbyAKDYQI4wVxIxMTNzK3VBW7g3g1xzABTa/fOEh
30LiiE9x/XHvnY2nPYqEZ3GFGXfrGr6oeDf4gnMyLD3eqtCU1FTnAx8MwM7HCMBKY1LCFHyAcqDTInJL
BNuY/ZV+xXUo9Rlmfu1pkPoESH00kF/1B0h9CIT+NYhb/nMQp/wnAEqRckruXSLBy4thsHDQKApISOEp
KvJkvGpo4ysac3L8MRaimJCxgasrGas9ELsfyeSEV18oLbHExPmTXyFxHIQ+DUKf+XxpahUmOr1pybgX
+CzwBcsOamn8zQuN4AuLwZPA2Sp9NyZ8MMBWZ0bGMnzUXclqJqE0dqpwXMbJCpD6vH+h8CxIXRqYW3MS
pD4WxK86ClL/EcytALHLDwZzy38BDsDgIKTgXSSng8LLeDPQxx3l3SuODcZoPxkziF0Qr+IgJikQ+jAI
fQxifQKEPg1X6TNu3LLzmJ2xxWu0oIADnmjJO63Q6mPzFa4iPhO6l3WoBFIl7Q7SRKaDLw5I63zoAcaA
vd4c9iZy3zyziYSaa7jQK7cSpCbKmIXCc6TUeTWng3KqTwbzK48F8yqOBvPKD4/nlv8Og3MI+A34VczP
ACU5xX4xOKAyXi/UWJNjj7EQxwSTD8SnDBMRxux3iOMfmKQwWcGV+CSUmaUwhzoDQp8fGrpRgBu8oxN6
s1hT+zuvNO5rOm1hH5PJC3qNXoBbPb89oRE8AUBa5wO3GKM6H4m4fRT577oEf1frW0RU+BcR5cyC2vPw
hs9Cpi4Nyqk6DVKfhME4Pp5XfgykPgocGc8tA8HLfgdwsOig7AAOpIw3AzXmohhgTMSx+QNjBcnoyHhe
xbFgfsVxiOdJiOvpgHxBKV6R8crslPRHJd5yjHOrofNzElX8Ikf1sfrSU9446Jj8qMAzHxvPsvvQdKH8
WxUaAWkpqanlcYktEbDzoRUURU4SR4THCXxL6kipAwpqywLzBOeDcqvPBudUnQGpS2FQToHUJ4ETIdyy
4zBgIPgzQPQyFJ2SXcabgxp3jAHyn7jwyjERQcwqTmEMIZ549T0L8T2PcfYrqS/X8v26FtcocGcuzSmJ
zP4u3zn0M50cBU7UK44Orus3Kij7g9Hhum9daASkpeppqvOBWyLgP6hJbokA4D0fHGozSIs1eQK/krpK
ZpGwAt50Obz5chiE8yD1ufH8irMwMGdCeOWlCAzUaQAlp0DZSeFlvFGocUeoWGBsToviVFE6nl95BmMY
lFdzHrIzlpblUGJWWEXurMG44+6lBmG8OCXvtXZ9rRZNkjcOrApYuLE+MrW4Dr/fx3hiGAit+q4ITUlN
LY9TnQ9ySwStKYkz6JtBOsb/JvAvJqpB6iqQuhKkrgCpy2FAysfnVJaB2OdhkM4BKDidMzREAynjTUAf
d3o8MAmdg5hhQirDGAbmC/Dqi1fhSp/C2upBjnOF2BzA+A8KiHKUd1np2m/0BJ6y+YSG08IrddcetNXZ
TFyOya70I+OZNiB1v7cqNALSUqUH1fnouiWCre7MrJVG83PJzSCVracTHuyzKHUNSF0dWCCogk92ZVBe
dWVwblWFWGxplD2H8zJeKdLGGJGICcYKYxaUC0kpv6YyoLC2CmMKV+Fqk2UZAsy+uLWc/hzOOkWP1S59
LcIWQN1c/+UWTv3l+x11Vx50EL9XNhPKZiEEWXoYzx/y1oVGQFpKapwkUp0PbMlQnQ+HTptBui8UehcI
UGoBDEANDEQNfLqrQWygGqkKzu0EyN6JChlvjK5j/ywuoljVVGPsMIYYS4ypJ69coGgxmVyPMAzP3wXx
t+1rtzxA3mT8QX2X2Q2V1x/WNfzVUdd4r4NAvkssIkvSPqMmzu1aekiVtDtIE/ZlgJOmS011PrAlQ22u
3mkzSL2Jq4XwSa71LyGlFsCACCBbC2BwBPBpF5FXUyNBPkgv483SJQaB+WQcyFhhzDB2GEOU2W9nfe2w
2VuEGGNMYLozM5cMcPvetZ95aARk54bo3N/rBXc66mr/7CAoam63EZYh0ksPqZJ2B2myviwgLSV1184H
tSVCp80gR36RROAA+KPYxUQtDApJQFEtOUgy3nEgTmTMIHYYQ4ylS9rxWmzVDvZcif/YUIay73q7vrZf
hsgbB523nPBtfdnN9rqK2x1EV3adbSaUpJQeUiXtDtJE7Q4gLTVJRKnpWyJI3QzSMrJE6LurXgiDIYRB
EUMImTLeaTBGIurI2PlBDH13NwiHBK6AsnICgXMmrSlJkxTGrXLrN3pSqoJxUAP3CFFfeqOj7kxLByGN
pdslSw+pknYHaZJ2B5AWhaakpnc+nrsZ5MilKYTx1+mIkMJExjsPPV7GX2cQn4bHkULiFdggjJ+g6BXh
3M9qwWxMXEYe4fVL4orrAOJ5LI4tJFTGTOhUekiVtDtIk7S7gLRU6fH8zscs1ipqM0gcBBn/GyiODcUH
Ywm4EjvJO63wkDcJ2YW1M3yvHiD7zi8DVXpIlbQ7SBP0vwGkpaR+XufDVn8uNxre/Gl43U7/uLuM95dh
CwuPQVzXQXxNFVxXjOlt84XrxxZfWPUyW2T+oUm48Qcm4aNA1JH/xIdmc00AZamSvi3gTdGlpnc+8GkX
fITLGnAFfIBAIASYAOCuOzLeDzBm4wEm4Ak4ANjVGqbg8e2Ij+3m+veymbEC6uEoYCMQ+Q9sAJYCDsAA
qWK9TeCNUVLTOx8oNWZqfNgWux+2gBOAcrsDHjLeGzBeGDdHwAoYDWBXS0uR8Z1GH6cFhh/bzhn1kc2M
kb2skdDPX4LhgDrwiVSp3jbw5qhJIiU1Zmq85RSXyLFPjVsjYMbGwcBPt4z3C9xVC+dGKDImKmzVYncL
507UTfyY1MjbRJ8HCCwByvMugkJ3lRpranzTWFfjAGAXBCeNOCAy3h8wZggmJ4wjJip8PA+7Wygzlpuk
zNKE/SekyfSuQJUelNT4ZvEOPRQbyxC8Uw/be9gNkfF+gYkJJcYrL2ZlTFjYskWZMd4Ye2lOSCBxSPuh
dwgqU9PFxjeOcuMgICi5jPcLKnYYR7rIZGYWI80HCSQOaT/0jkG9QUpsSm4Z/xtQMaXHWZoHUul8yMn9
H2p7AaDigHD8AAAAAElFTkSuQmCC
</value>
</data> </data>
<data name="nav_AlarmLog.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_AlarmLog.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@@ -3680,6 +3729,9 @@
P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII= P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII=
</value> </value>
</data> </data>
<data name="nav_User.Location" type="System.Drawing.Point, System.Drawing">
<value>1192, 43</value>
</data>
<data name="nav_HistotryData.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="nav_HistotryData.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAALQAAAA7CAYAAADSK6A/AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@@ -3887,9 +3939,18 @@
P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII= P4Qwuf8D12Mmqnx5aLAAAAAASUVORK5CYII=
</value> </value>
</data> </data>
<data name="nav_HistotryData.Location" type="System.Drawing.Point, System.Drawing">
<value>754, 43</value>
</data>
<data name="btExit.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btExit.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="btExit.Location" type="System.Drawing.Point, System.Drawing">
<value>1350, -4</value>
</data>
<data name="TopPanel.Size" type="System.Drawing.Size, System.Drawing">
<value>1386, 91</value>
</data>
<data name="notifyIcon1.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="notifyIcon1.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABALADAACwAwAAAAAAAAAA AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABALADAACwAwAAAAAAAAAA
@@ -5022,6 +5083,15 @@
///+AAAA/////////////////wAAAf////8= ///+AAAA/////////////////wAAAf////8=
</value> </value>
</data> </data>
<data name="MainPanel.Size" type="System.Drawing.Size, System.Drawing">
<value>1340, 618</value>
</data>
<data name="CorePanel.Size" type="System.Drawing.Size, System.Drawing">
<value>1386, 644</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>1386, 788</value>
</data>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABALADAACwAwAAAAAAAAAA AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABALADAACwAwAAAAAAAAAA
@@ -6154,4 +6224,7 @@
///+AAAA/////////////////wAAAf////8= ///+AAAA/////////////////wAAAf////8=
</value> </value>
</data> </data>
<data name="$this.Text" xml:space="preserve">
<value>外观检测数据监测系统</value>
</data>
</root> </root>
+154 -155
View File
@@ -30,16 +30,16 @@
{ {
this.components = new System.ComponentModel.Container(); this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMonitor)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMonitor));
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend4 = new System.Windows.Forms.DataVisualization.Charting.Legend(); System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series(); System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend5 = new System.Windows.Forms.DataVisualization.Charting.Legend(); System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series(); System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
JinYuan.Models.ElectricEnergy electricEnergy2 = new JinYuan.Models.ElectricEnergy(); JinYuan.Models.ElectricEnergy electricEnergy1 = new JinYuan.Models.ElectricEnergy();
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend6 = new System.Windows.Forms.DataVisualization.Charting.Legend(); System.Windows.Forms.DataVisualization.Charting.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series(); System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.MainPanel = new JinYuan.ControlLib.PanelEnhanced(); this.MainPanel = new JinYuan.ControlLib.PanelEnhanced();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
@@ -102,7 +102,7 @@
this.MainPanel.Location = new System.Drawing.Point(0, 0); this.MainPanel.Location = new System.Drawing.Point(0, 0);
this.MainPanel.Margin = new System.Windows.Forms.Padding(0); this.MainPanel.Margin = new System.Windows.Forms.Padding(0);
this.MainPanel.Name = "MainPanel"; this.MainPanel.Name = "MainPanel";
this.MainPanel.Size = new System.Drawing.Size(1874, 829); this.MainPanel.Size = new System.Drawing.Size(1370, 772);
this.MainPanel.TabIndex = 0; this.MainPanel.TabIndex = 0;
// //
// tableLayoutPanel1 // tableLayoutPanel1
@@ -126,7 +126,7 @@
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.28468F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.28468F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 32.56936F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 32.56936F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1874, 829); this.tableLayoutPanel1.Size = new System.Drawing.Size(1370, 772);
this.tableLayoutPanel1.TabIndex = 37; this.tableLayoutPanel1.TabIndex = 37;
// //
// ucPanel_900_4502 // ucPanel_900_4502
@@ -137,10 +137,10 @@
this.ucPanel_900_4502.Controls.Add(this.chartNgShow); this.ucPanel_900_4502.Controls.Add(this.chartNgShow);
this.ucPanel_900_4502.Dock = System.Windows.Forms.DockStyle.Fill; this.ucPanel_900_4502.Dock = System.Windows.Forms.DockStyle.Fill;
this.ucPanel_900_4502.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.ucPanel_900_4502.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucPanel_900_4502.Location = new System.Drawing.Point(4, 139); this.ucPanel_900_4502.Location = new System.Drawing.Point(4, 129);
this.ucPanel_900_4502.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.ucPanel_900_4502.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.ucPanel_900_4502.Name = "ucPanel_900_4502"; this.ucPanel_900_4502.Name = "ucPanel_900_4502";
this.ucPanel_900_4502.Size = new System.Drawing.Size(616, 279); this.ucPanel_900_4502.Size = new System.Drawing.Size(448, 259);
this.ucPanel_900_4502.TabIndex = 41; this.ucPanel_900_4502.TabIndex = 41;
this.ucPanel_900_4502.Title = ""; this.ucPanel_900_4502.Title = "";
this.ucPanel_900_4502.TitleVisible = false; this.ucPanel_900_4502.TitleVisible = false;
@@ -149,29 +149,28 @@
// //
this.chartNgShow.BackColor = System.Drawing.Color.Transparent; this.chartNgShow.BackColor = System.Drawing.Color.Transparent;
this.chartNgShow.BorderlineColor = System.Drawing.Color.Blue; this.chartNgShow.BorderlineColor = System.Drawing.Color.Blue;
chartArea4.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea1.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea4.AxisX.LineColor = System.Drawing.Color.White; chartArea1.AxisX.LineColor = System.Drawing.Color.White;
chartArea4.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea4.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea4.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); chartArea1.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
chartArea4.AxisX.TitleForeColor = System.Drawing.Color.White; chartArea1.AxisX.TitleForeColor = System.Drawing.Color.White;
chartArea4.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea1.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea4.AxisY.LineColor = System.Drawing.Color.White; chartArea1.AxisY.LineColor = System.Drawing.Color.White;
chartArea4.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea4.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea1.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea4.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); chartArea1.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
chartArea4.AxisY.TitleForeColor = System.Drawing.Color.White; chartArea1.AxisY.TitleForeColor = System.Drawing.Color.White;
chartArea4.BackColor = System.Drawing.Color.Transparent; chartArea1.BackColor = System.Drawing.Color.Transparent;
chartArea4.BorderColor = System.Drawing.Color.Empty; chartArea1.BorderColor = System.Drawing.Color.Empty;
chartArea4.Name = "ChartArea1"; chartArea1.Name = "ChartArea1";
this.chartNgShow.ChartAreas.Add(chartArea4); this.chartNgShow.ChartAreas.Add(chartArea1);
this.chartNgShow.Dock = System.Windows.Forms.DockStyle.Fill; legend1.BackColor = System.Drawing.Color.Transparent;
legend4.BackColor = System.Drawing.Color.Transparent; legend1.Enabled = false;
legend4.Enabled = false; legend1.ForeColor = System.Drawing.Color.White;
legend4.ForeColor = System.Drawing.Color.White; legend1.IsEquallySpacedItems = true;
legend4.IsEquallySpacedItems = true; legend1.Name = "Legend1";
legend4.Name = "Legend1"; this.chartNgShow.Legends.Add(legend1);
this.chartNgShow.Legends.Add(legend4);
this.chartNgShow.Location = new System.Drawing.Point(0, 0); this.chartNgShow.Location = new System.Drawing.Point(0, 0);
this.chartNgShow.Name = "chartNgShow"; this.chartNgShow.Name = "chartNgShow";
this.chartNgShow.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None; this.chartNgShow.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
@@ -179,11 +178,11 @@
System.Drawing.Color.DarkTurquoise, System.Drawing.Color.DarkTurquoise,
System.Drawing.Color.PaleGoldenrod, System.Drawing.Color.PaleGoldenrod,
System.Drawing.Color.Green}; System.Drawing.Color.Green};
series4.ChartArea = "ChartArea1"; series1.ChartArea = "ChartArea1";
series4.IsXValueIndexed = true; series1.IsXValueIndexed = true;
series4.Legend = "Legend1"; series1.Legend = "Legend1";
series4.Name = "Series1"; series1.Name = "Series1";
this.chartNgShow.Series.Add(series4); this.chartNgShow.Series.Add(series1);
this.chartNgShow.Size = new System.Drawing.Size(616, 279); this.chartNgShow.Size = new System.Drawing.Size(616, 279);
this.chartNgShow.TabIndex = 5; this.chartNgShow.TabIndex = 5;
this.chartNgShow.Text = "chart1"; this.chartNgShow.Text = "chart1";
@@ -192,10 +191,10 @@
// //
this.panel1.Controls.Add(this.ucPanel_900_4501); this.panel1.Controls.Add(this.ucPanel_900_4501);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(627, 3); this.panel1.Location = new System.Drawing.Point(459, 3);
this.panel1.Name = "panel1"; this.panel1.Name = "panel1";
this.tableLayoutPanel1.SetRowSpan(this.panel1, 2); this.tableLayoutPanel1.SetRowSpan(this.panel1, 2);
this.panel1.Size = new System.Drawing.Size(618, 417); this.panel1.Size = new System.Drawing.Size(450, 387);
this.panel1.TabIndex = 40; this.panel1.TabIndex = 40;
// //
// ucPanel_900_4501 // ucPanel_900_4501
@@ -209,7 +208,7 @@
this.ucPanel_900_4501.Location = new System.Drawing.Point(0, 0); this.ucPanel_900_4501.Location = new System.Drawing.Point(0, 0);
this.ucPanel_900_4501.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.ucPanel_900_4501.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.ucPanel_900_4501.Name = "ucPanel_900_4501"; this.ucPanel_900_4501.Name = "ucPanel_900_4501";
this.ucPanel_900_4501.Size = new System.Drawing.Size(618, 417); this.ucPanel_900_4501.Size = new System.Drawing.Size(450, 387);
this.ucPanel_900_4501.TabIndex = 0; this.ucPanel_900_4501.TabIndex = 0;
this.ucPanel_900_4501.Title = ""; this.ucPanel_900_4501.Title = "";
this.ucPanel_900_4501.TitleVisible = false; this.ucPanel_900_4501.TitleVisible = false;
@@ -238,7 +237,7 @@
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 281F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 281F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 51F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 51F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 54F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 54F));
this.tableLayoutPanel3.Size = new System.Drawing.Size(618, 417); this.tableLayoutPanel3.Size = new System.Drawing.Size(450, 387);
this.tableLayoutPanel3.TabIndex = 0; this.tableLayoutPanel3.TabIndex = 0;
// //
// panel5 // panel5
@@ -260,7 +259,7 @@
this.panel5.Location = new System.Drawing.Point(3, 109); this.panel5.Location = new System.Drawing.Point(3, 109);
this.panel5.Name = "panel5"; this.panel5.Name = "panel5";
this.tableLayoutPanel3.SetRowSpan(this.panel5, 2); this.tableLayoutPanel3.SetRowSpan(this.panel5, 2);
this.panel5.Size = new System.Drawing.Size(612, 326); this.panel5.Size = new System.Drawing.Size(444, 326);
this.panel5.TabIndex = 4; this.panel5.TabIndex = 4;
// //
// proUtilizationRate // proUtilizationRate
@@ -422,7 +421,7 @@
this.titleRunTime.Location = new System.Drawing.Point(4, 73); this.titleRunTime.Location = new System.Drawing.Point(4, 73);
this.titleRunTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleRunTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleRunTime.Name = "titleRunTime"; this.titleRunTime.Name = "titleRunTime";
this.titleRunTime.Size = new System.Drawing.Size(308, 20); this.titleRunTime.Size = new System.Drawing.Size(222, 20);
this.titleRunTime.TabIndex = 1; this.titleRunTime.TabIndex = 1;
this.titleRunTime.Title = "2023/08/17 10:10:10"; this.titleRunTime.Title = "2023/08/17 10:10:10";
this.titleRunTime.TitleName = "开机时间"; this.titleRunTime.TitleName = "开机时间";
@@ -436,12 +435,12 @@
this.titleEqp_code.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.titleEqp_code.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.titleEqp_code.Dock = System.Windows.Forms.DockStyle.Fill; this.titleEqp_code.Dock = System.Windows.Forms.DockStyle.Fill;
this.titleEqp_code.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.titleEqp_code.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.titleEqp_code.Location = new System.Drawing.Point(320, 73); this.titleEqp_code.Location = new System.Drawing.Point(234, 73);
this.titleEqp_code.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleEqp_code.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleEqp_code.Name = "titleEqp_code"; this.titleEqp_code.Name = "titleEqp_code";
this.titleEqp_code.Size = new System.Drawing.Size(294, 20); this.titleEqp_code.Size = new System.Drawing.Size(212, 20);
this.titleEqp_code.TabIndex = 5; this.titleEqp_code.TabIndex = 5;
this.titleEqp_code.Title = "EVEDL14L1ZJHJ01"; this.titleEqp_code.Title = "602VIM01";
this.titleEqp_code.TitleName = "设备编号"; this.titleEqp_code.TitleName = "设备编号";
this.titleEqp_code.TitleNameForColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255))))); this.titleEqp_code.TitleNameForColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255)))));
this.titleEqp_code.TtfPath = ""; this.titleEqp_code.TtfPath = "";
@@ -453,12 +452,12 @@
this.titleFactory_code.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.titleFactory_code.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.titleFactory_code.Dock = System.Windows.Forms.DockStyle.Fill; this.titleFactory_code.Dock = System.Windows.Forms.DockStyle.Fill;
this.titleFactory_code.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.titleFactory_code.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.titleFactory_code.Location = new System.Drawing.Point(320, 13); this.titleFactory_code.Location = new System.Drawing.Point(234, 13);
this.titleFactory_code.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleFactory_code.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleFactory_code.Name = "titleFactory_code"; this.titleFactory_code.Name = "titleFactory_code";
this.titleFactory_code.Size = new System.Drawing.Size(294, 20); this.titleFactory_code.Size = new System.Drawing.Size(212, 20);
this.titleFactory_code.TabIndex = 2; this.titleFactory_code.TabIndex = 2;
this.titleFactory_code.Title = "14J"; this.titleFactory_code.Title = "602VIE01";
this.titleFactory_code.TitleName = "工厂代号"; this.titleFactory_code.TitleName = "工厂代号";
this.titleFactory_code.TitleNameForColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255))))); this.titleFactory_code.TitleNameForColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255)))));
this.titleFactory_code.TtfPath = ""; this.titleFactory_code.TtfPath = "";
@@ -473,7 +472,7 @@
this.titleModeName.Location = new System.Drawing.Point(4, 13); this.titleModeName.Location = new System.Drawing.Point(4, 13);
this.titleModeName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleModeName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleModeName.Name = "titleModeName"; this.titleModeName.Name = "titleModeName";
this.titleModeName.Size = new System.Drawing.Size(308, 20); this.titleModeName.Size = new System.Drawing.Size(222, 20);
this.titleModeName.TabIndex = 8; this.titleModeName.TabIndex = 8;
this.titleModeName.Title = "G11"; this.titleModeName.Title = "G11";
this.titleModeName.TitleName = "生产型号"; this.titleModeName.TitleName = "生产型号";
@@ -487,10 +486,10 @@
this.titleLine_No.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.titleLine_No.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.titleLine_No.Dock = System.Windows.Forms.DockStyle.Fill; this.titleLine_No.Dock = System.Windows.Forms.DockStyle.Fill;
this.titleLine_No.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.titleLine_No.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.titleLine_No.Location = new System.Drawing.Point(320, 43); this.titleLine_No.Location = new System.Drawing.Point(234, 43);
this.titleLine_No.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleLine_No.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleLine_No.Name = "titleLine_No"; this.titleLine_No.Name = "titleLine_No";
this.titleLine_No.Size = new System.Drawing.Size(294, 20); this.titleLine_No.Size = new System.Drawing.Size(212, 20);
this.titleLine_No.TabIndex = 3; this.titleLine_No.TabIndex = 3;
this.titleLine_No.Title = "14J-ZZ-L1"; this.titleLine_No.Title = "14J-ZZ-L1";
this.titleLine_No.TitleName = "线体编号"; this.titleLine_No.TitleName = "线体编号";
@@ -507,7 +506,7 @@
this.titleStartTime.Location = new System.Drawing.Point(4, 43); this.titleStartTime.Location = new System.Drawing.Point(4, 43);
this.titleStartTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.titleStartTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.titleStartTime.Name = "titleStartTime"; this.titleStartTime.Name = "titleStartTime";
this.titleStartTime.Size = new System.Drawing.Size(308, 20); this.titleStartTime.Size = new System.Drawing.Size(222, 20);
this.titleStartTime.TabIndex = 0; this.titleStartTime.TabIndex = 0;
this.titleStartTime.Title = "2023/08/17 10:10:10"; this.titleStartTime.Title = "2023/08/17 10:10:10";
this.titleStartTime.TitleName = "运行时间"; this.titleStartTime.TitleName = "运行时间";
@@ -523,11 +522,11 @@
this.ucPanel_900_4505.Controls.Add(this.chartAlarmData); this.ucPanel_900_4505.Controls.Add(this.chartAlarmData);
this.ucPanel_900_4505.Dock = System.Windows.Forms.DockStyle.Fill; this.ucPanel_900_4505.Dock = System.Windows.Forms.DockStyle.Fill;
this.ucPanel_900_4505.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.ucPanel_900_4505.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucPanel_900_4505.Location = new System.Drawing.Point(1252, 5); this.ucPanel_900_4505.Location = new System.Drawing.Point(916, 5);
this.ucPanel_900_4505.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.ucPanel_900_4505.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.ucPanel_900_4505.Name = "ucPanel_900_4505"; this.ucPanel_900_4505.Name = "ucPanel_900_4505";
this.tableLayoutPanel1.SetRowSpan(this.ucPanel_900_4505, 2); this.tableLayoutPanel1.SetRowSpan(this.ucPanel_900_4505, 2);
this.ucPanel_900_4505.Size = new System.Drawing.Size(618, 413); this.ucPanel_900_4505.Size = new System.Drawing.Size(450, 383);
this.ucPanel_900_4505.TabIndex = 39; this.ucPanel_900_4505.TabIndex = 39;
this.ucPanel_900_4505.Title = ""; this.ucPanel_900_4505.Title = "";
this.ucPanel_900_4505.TitleVisible = false; this.ucPanel_900_4505.TitleVisible = false;
@@ -536,45 +535,45 @@
// //
this.chartAlarmData.BackColor = System.Drawing.Color.Transparent; this.chartAlarmData.BackColor = System.Drawing.Color.Transparent;
this.chartAlarmData.BorderlineColor = System.Drawing.Color.Blue; this.chartAlarmData.BorderlineColor = System.Drawing.Color.Blue;
chartArea5.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea2.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea5.AxisX.LineColor = System.Drawing.Color.White; chartArea2.AxisX.LineColor = System.Drawing.Color.White;
chartArea5.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea5.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea2.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea5.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.White; chartArea2.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.White;
chartArea5.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); chartArea2.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
chartArea5.AxisX.TitleForeColor = System.Drawing.Color.White; chartArea2.AxisX.TitleForeColor = System.Drawing.Color.White;
chartArea5.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount; chartArea2.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
chartArea5.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea2.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea5.AxisY.LineColor = System.Drawing.Color.White; chartArea2.AxisY.LineColor = System.Drawing.Color.White;
chartArea5.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea5.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea2.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea5.AxisY.MinorGrid.LineColor = System.Drawing.Color.White; chartArea2.AxisY.MinorGrid.LineColor = System.Drawing.Color.White;
chartArea5.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); chartArea2.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
chartArea5.AxisY.TitleForeColor = System.Drawing.Color.White; chartArea2.AxisY.TitleForeColor = System.Drawing.Color.White;
chartArea5.BackColor = System.Drawing.Color.Transparent; chartArea2.BackColor = System.Drawing.Color.Transparent;
chartArea5.BorderColor = System.Drawing.Color.Empty; chartArea2.BorderColor = System.Drawing.Color.Empty;
chartArea5.BorderWidth = 2; chartArea2.BorderWidth = 2;
chartArea5.Name = "ChartArea1"; chartArea2.Name = "ChartArea1";
this.chartAlarmData.ChartAreas.Add(chartArea5); this.chartAlarmData.ChartAreas.Add(chartArea2);
this.chartAlarmData.Dock = System.Windows.Forms.DockStyle.Fill; this.chartAlarmData.Dock = System.Windows.Forms.DockStyle.Fill;
legend5.BackColor = System.Drawing.Color.Transparent; legend2.BackColor = System.Drawing.Color.Transparent;
legend5.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top; legend2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
legend5.Enabled = false; legend2.Enabled = false;
legend5.ForeColor = System.Drawing.Color.White; legend2.ForeColor = System.Drawing.Color.White;
legend5.IsEquallySpacedItems = true; legend2.IsEquallySpacedItems = true;
legend5.Name = "Legend1"; legend2.Name = "Legend1";
this.chartAlarmData.Legends.Add(legend5); this.chartAlarmData.Legends.Add(legend2);
this.chartAlarmData.Location = new System.Drawing.Point(0, 0); this.chartAlarmData.Location = new System.Drawing.Point(0, 0);
this.chartAlarmData.Name = "chartAlarmData"; this.chartAlarmData.Name = "chartAlarmData";
this.chartAlarmData.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None; this.chartAlarmData.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
this.chartAlarmData.PaletteCustomColors = new System.Drawing.Color[] { this.chartAlarmData.PaletteCustomColors = new System.Drawing.Color[] {
System.Drawing.Color.DarkTurquoise}; System.Drawing.Color.DarkTurquoise};
series5.ChartArea = "ChartArea1"; series2.ChartArea = "ChartArea1";
series5.IsXValueIndexed = true; series2.IsXValueIndexed = true;
series5.Legend = "Legend1"; series2.Legend = "Legend1";
series5.Name = "Series1"; series2.Name = "Series1";
this.chartAlarmData.Series.Add(series5); this.chartAlarmData.Series.Add(series2);
this.chartAlarmData.Size = new System.Drawing.Size(618, 413); this.chartAlarmData.Size = new System.Drawing.Size(450, 383);
this.chartAlarmData.TabIndex = 6; this.chartAlarmData.TabIndex = 6;
this.chartAlarmData.Text = "chart1"; this.chartAlarmData.Text = "chart1";
// //
@@ -589,7 +588,7 @@
this.ucPanel_900_4503.Location = new System.Drawing.Point(4, 5); this.ucPanel_900_4503.Location = new System.Drawing.Point(4, 5);
this.ucPanel_900_4503.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.ucPanel_900_4503.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.ucPanel_900_4503.Name = "ucPanel_900_4503"; this.ucPanel_900_4503.Name = "ucPanel_900_4503";
this.ucPanel_900_4503.Size = new System.Drawing.Size(616, 124); this.ucPanel_900_4503.Size = new System.Drawing.Size(448, 114);
this.ucPanel_900_4503.TabIndex = 0; this.ucPanel_900_4503.TabIndex = 0;
this.ucPanel_900_4503.Title = ""; this.ucPanel_900_4503.Title = "";
this.ucPanel_900_4503.TitleVisible = false; this.ucPanel_900_4503.TitleVisible = false;
@@ -598,28 +597,28 @@
// //
this.ucElectricityMeterV1.BackColor = System.Drawing.Color.Transparent; this.ucElectricityMeterV1.BackColor = System.Drawing.Color.Transparent;
this.ucElectricityMeterV1.Dock = System.Windows.Forms.DockStyle.Fill; this.ucElectricityMeterV1.Dock = System.Windows.Forms.DockStyle.Fill;
electricEnergy2.AccumulatedElectricity = null; electricEnergy1.AccumulatedElectricity = null;
electricEnergy2.ActivePower = null; electricEnergy1.ActivePower = null;
electricEnergy2.ct = null; electricEnergy1.ct = null;
electricEnergy2.PhaseCurrentA = null; electricEnergy1.PhaseCurrentA = null;
electricEnergy2.PhaseCurrentB = null; electricEnergy1.PhaseCurrentB = null;
electricEnergy2.PhaseCurrentC = null; electricEnergy1.PhaseCurrentC = null;
electricEnergy2.PhasePowerA = null; electricEnergy1.PhasePowerA = null;
electricEnergy2.PhasePowerB = null; electricEnergy1.PhasePowerB = null;
electricEnergy2.PhasePowerC = null; electricEnergy1.PhasePowerC = null;
electricEnergy2.PhaseVoltageA = null; electricEnergy1.PhaseVoltageA = null;
electricEnergy2.PhaseVoltageB = null; electricEnergy1.PhaseVoltageB = null;
electricEnergy2.PhaseVoltageC = null; electricEnergy1.PhaseVoltageC = null;
electricEnergy2.PowerFactor = null; electricEnergy1.PowerFactor = null;
electricEnergy2.pt = null; electricEnergy1.pt = null;
this.ucElectricityMeterV1.ElectricEnergy = electricEnergy2; this.ucElectricityMeterV1.ElectricEnergy = electricEnergy1;
this.ucElectricityMeterV1.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.ucElectricityMeterV1.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucElectricityMeterV1.Location = new System.Drawing.Point(0, 0); this.ucElectricityMeterV1.Location = new System.Drawing.Point(0, 0);
this.ucElectricityMeterV1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); this.ucElectricityMeterV1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.ucElectricityMeterV1.Name = "ucElectricityMeterV1"; this.ucElectricityMeterV1.Name = "ucElectricityMeterV1";
this.ucElectricityMeterV1.ProjectNameForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255))))); this.ucElectricityMeterV1.ProjectNameForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255)))));
this.ucElectricityMeterV1.ProjectUintForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255))))); this.ucElectricityMeterV1.ProjectUintForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(233)))), ((int)(((byte)(255)))));
this.ucElectricityMeterV1.Size = new System.Drawing.Size(616, 124); this.ucElectricityMeterV1.Size = new System.Drawing.Size(448, 114);
this.ucElectricityMeterV1.TabIndex = 0; this.ucElectricityMeterV1.TabIndex = 0;
this.ucElectricityMeterV1.TitleName = "智能电表(设备)"; this.ucElectricityMeterV1.TitleName = "智能电表(设备)";
// //
@@ -632,11 +631,11 @@
this.ucPanel12Hour.Controls.Add(this.Chart12HourTotal); this.ucPanel12Hour.Controls.Add(this.Chart12HourTotal);
this.ucPanel12Hour.Dock = System.Windows.Forms.DockStyle.Fill; this.ucPanel12Hour.Dock = System.Windows.Forms.DockStyle.Fill;
this.ucPanel12Hour.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.ucPanel12Hour.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ucPanel12Hour.Location = new System.Drawing.Point(4, 428); this.ucPanel12Hour.Location = new System.Drawing.Point(4, 398);
this.ucPanel12Hour.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.ucPanel12Hour.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.ucPanel12Hour.Name = "ucPanel12Hour"; this.ucPanel12Hour.Name = "ucPanel12Hour";
this.tableLayoutPanel1.SetRowSpan(this.ucPanel12Hour, 2); this.tableLayoutPanel1.SetRowSpan(this.ucPanel12Hour, 2);
this.ucPanel12Hour.Size = new System.Drawing.Size(1866, 396); this.ucPanel12Hour.Size = new System.Drawing.Size(1362, 369);
this.ucPanel12Hour.TabIndex = 4; this.ucPanel12Hour.TabIndex = 4;
this.ucPanel12Hour.Title = "当前(白班)产能"; this.ucPanel12Hour.Title = "当前(白班)产能";
this.ucPanel12Hour.TitleVisible = false; this.ucPanel12Hour.TitleVisible = false;
@@ -645,43 +644,43 @@
// //
this.Chart12HourTotal.BackColor = System.Drawing.Color.Transparent; this.Chart12HourTotal.BackColor = System.Drawing.Color.Transparent;
this.Chart12HourTotal.BorderlineColor = System.Drawing.Color.Blue; this.Chart12HourTotal.BorderlineColor = System.Drawing.Color.Blue;
chartArea6.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea3.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea6.AxisX.LineColor = System.Drawing.Color.White; chartArea3.AxisX.LineColor = System.Drawing.Color.White;
chartArea6.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea3.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea6.AxisX.MinorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisX.MinorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); chartArea3.AxisX.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
chartArea6.AxisX.TitleForeColor = System.Drawing.Color.White; chartArea3.AxisX.TitleForeColor = System.Drawing.Color.White;
chartArea6.AxisX2.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea3.AxisX2.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea6.AxisX2.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisX2.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisX2.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea3.AxisX2.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea6.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea3.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea6.AxisY.LineColor = System.Drawing.Color.White; chartArea3.AxisY.LineColor = System.Drawing.Color.White;
chartArea6.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea3.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea6.AxisY.MinorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisY.MinorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisY.MinorTickMark.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisY.MinorTickMark.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); chartArea3.AxisY.TitleFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
chartArea6.AxisY.TitleForeColor = System.Drawing.Color.White; chartArea3.AxisY.TitleForeColor = System.Drawing.Color.White;
chartArea6.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True; chartArea3.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
chartArea6.AxisY2.LabelStyle.ForeColor = System.Drawing.Color.White; chartArea3.AxisY2.LabelStyle.ForeColor = System.Drawing.Color.White;
chartArea6.AxisY2.LineColor = System.Drawing.Color.White; chartArea3.AxisY2.LineColor = System.Drawing.Color.White;
chartArea6.AxisY2.MajorGrid.LineColor = System.Drawing.Color.Transparent; chartArea3.AxisY2.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartArea6.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.White; chartArea3.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.White;
chartArea6.AxisY2.ScaleBreakStyle.LineColor = System.Drawing.Color.White; chartArea3.AxisY2.ScaleBreakStyle.LineColor = System.Drawing.Color.White;
chartArea6.AxisY2.TitleFont = new System.Drawing.Font("微软雅黑", 9F); chartArea3.AxisY2.TitleFont = new System.Drawing.Font("微软雅黑", 9F);
chartArea6.AxisY2.TitleForeColor = System.Drawing.Color.White; chartArea3.AxisY2.TitleForeColor = System.Drawing.Color.White;
chartArea6.BackColor = System.Drawing.Color.Transparent; chartArea3.BackColor = System.Drawing.Color.Transparent;
chartArea6.BorderColor = System.Drawing.Color.Empty; chartArea3.BorderColor = System.Drawing.Color.Empty;
chartArea6.Name = "ChartArea1"; chartArea3.Name = "ChartArea1";
this.Chart12HourTotal.ChartAreas.Add(chartArea6); this.Chart12HourTotal.ChartAreas.Add(chartArea3);
this.Chart12HourTotal.Dock = System.Windows.Forms.DockStyle.Fill; this.Chart12HourTotal.Dock = System.Windows.Forms.DockStyle.Fill;
legend6.BackColor = System.Drawing.Color.Transparent; legend3.BackColor = System.Drawing.Color.Transparent;
legend6.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top; legend3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
legend6.ForeColor = System.Drawing.Color.White; legend3.ForeColor = System.Drawing.Color.White;
legend6.Name = "Legend1"; legend3.Name = "Legend1";
this.Chart12HourTotal.Legends.Add(legend6); this.Chart12HourTotal.Legends.Add(legend3);
this.Chart12HourTotal.Location = new System.Drawing.Point(0, 0); this.Chart12HourTotal.Location = new System.Drawing.Point(0, 0);
this.Chart12HourTotal.Margin = new System.Windows.Forms.Padding(0); this.Chart12HourTotal.Margin = new System.Windows.Forms.Padding(0);
this.Chart12HourTotal.Name = "Chart12HourTotal"; this.Chart12HourTotal.Name = "Chart12HourTotal";
@@ -690,12 +689,12 @@
System.Drawing.Color.DarkTurquoise, System.Drawing.Color.DarkTurquoise,
System.Drawing.Color.PaleGoldenrod, System.Drawing.Color.PaleGoldenrod,
System.Drawing.Color.Green}; System.Drawing.Color.Green};
series6.ChartArea = "ChartArea1"; series3.ChartArea = "ChartArea1";
series6.IsXValueIndexed = true; series3.IsXValueIndexed = true;
series6.Legend = "Legend1"; series3.Legend = "Legend1";
series6.Name = "Series1"; series3.Name = "Series1";
this.Chart12HourTotal.Series.Add(series6); this.Chart12HourTotal.Series.Add(series3);
this.Chart12HourTotal.Size = new System.Drawing.Size(1866, 396); this.Chart12HourTotal.Size = new System.Drawing.Size(1362, 369);
this.Chart12HourTotal.TabIndex = 4; this.Chart12HourTotal.TabIndex = 4;
this.Chart12HourTotal.Text = "chart1"; this.Chart12HourTotal.Text = "chart1";
// //
@@ -704,7 +703,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(41)))), ((int)(((byte)(96))))); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(41)))), ((int)(((byte)(96)))));
this.ClientSize = new System.Drawing.Size(1874, 829); this.ClientSize = new System.Drawing.Size(1370, 772);
this.ControlBox = false; this.ControlBox = false;
this.Controls.Add(this.MainPanel); this.Controls.Add(this.MainPanel);
this.DoubleBuffered = true; this.DoubleBuffered = true;
+1 -1
View File
@@ -125,7 +125,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABG ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABG
DQAAAk1TRnQBSQFMAgEBAwEAAZgBCwGYAQsBEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA DQAAAk1TRnQBSQFMAgEBAwEAAagBCwGoAQsBEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA
AwABEAMAAQEBAAEgBgABEC4AAxUBHQMkATQDBQEGaAADHQEpAl4BZwHwATQBNQHPAf8BNAE1Ac8B/wE0 AwABEAMAAQEBAAEgBgABEC4AAxUBHQMkATQDBQEGaAADHQEpAl4BZwHwATQBNQHPAf8BNAE1Ac8B/wE0
ATUBzwH/ATQBNQHPAf8BNAE1Ac8B/wNOAZZgAAMTARkDZQHlA+YB/wPmAf8D5gH/A+YB/wPmAf8DRwGA ATUBzwH/ATQBNQHPAf8BNAE1Ac8B/wNOAZZgAAMTARkDZQHlA+YB/wPmAf8D5gH/A+YB/wPmAf8DRwGA
GAADYAHbASgB6gH0Af8BKAHqAfQB/wEoAeoB9AH/ASgB6gH0Af8BKAHqAfQB/wEoAeoB9AH/ASgB6gH0 GAADYAHbASgB6gH0Af8BKAHqAfQB/wEoAeoB9AH/ASgB6gH0Af8BKAHqAfQB/wEoAeoB9AH/ASgB6gH0
+3 -1
View File
@@ -368,6 +368,7 @@
this.up_ShowSeriesCount.TextWidth = 30; this.up_ShowSeriesCount.TextWidth = 30;
this.up_ShowSeriesCount.ThemeColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226))))); this.up_ShowSeriesCount.ThemeColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
this.up_ShowSeriesCount.ThemeForeColor = System.Drawing.Color.White; this.up_ShowSeriesCount.ThemeForeColor = System.Drawing.Color.White;
this.up_ShowSeriesCount.Visible = false;
// //
// up_LockPeriod // up_LockPeriod
// //
@@ -442,6 +443,7 @@
this.label5.Size = new System.Drawing.Size(202, 26); this.label5.Size = new System.Drawing.Size(202, 26);
this.label5.TabIndex = 12; this.label5.TabIndex = 12;
this.label5.Text = "焊机功率曲线显示数量"; this.label5.Text = "焊机功率曲线显示数量";
this.label5.Visible = false;
// //
// label4 // label4
// //
@@ -650,7 +652,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
this.ClientSize = new System.Drawing.Size(1396, 651); this.ClientSize = new System.Drawing.Size(1370, 651);
this.Controls.Add(this.tog_OKSwitching); this.Controls.Add(this.tog_OKSwitching);
this.Controls.Add(this.label18); this.Controls.Add(this.label18);
this.Controls.Add(this.up_QieHuanPeriod); this.Controls.Add(this.up_QieHuanPeriod);
+7 -9
View File
@@ -97,7 +97,7 @@
// splitContainer1.Panel2 // splitContainer1.Panel2
// //
this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
this.splitContainer1.Size = new System.Drawing.Size(1392, 734); this.splitContainer1.Size = new System.Drawing.Size(1370, 734);
this.splitContainer1.SplitterDistance = 334; this.splitContainer1.SplitterDistance = 334;
this.splitContainer1.SplitterWidth = 1; this.splitContainer1.SplitterWidth = 1;
this.splitContainer1.TabIndex = 0; this.splitContainer1.TabIndex = 0;
@@ -222,8 +222,8 @@
this.splitContainer2.Panel2.Controls.Add(this.label1); this.splitContainer2.Panel2.Controls.Add(this.label1);
this.splitContainer2.Panel2.Controls.Add(this.btn_Add); this.splitContainer2.Panel2.Controls.Add(this.btn_Add);
this.splitContainer2.Panel2.Controls.Add(this.label2); this.splitContainer2.Panel2.Controls.Add(this.label2);
this.splitContainer2.Size = new System.Drawing.Size(1057, 734); this.splitContainer2.Size = new System.Drawing.Size(1035, 734);
this.splitContainer2.SplitterDistance = 776; this.splitContainer2.SplitterDistance = 757;
this.splitContainer2.SplitterWidth = 1; this.splitContainer2.SplitterWidth = 1;
this.splitContainer2.TabIndex = 0; this.splitContainer2.TabIndex = 0;
// //
@@ -275,7 +275,7 @@
this.dgvPara.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.dgvPara.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.dgvPara.RowTemplate.Height = 40; this.dgvPara.RowTemplate.Height = 40;
this.dgvPara.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False; this.dgvPara.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.dgvPara.Size = new System.Drawing.Size(776, 734); this.dgvPara.Size = new System.Drawing.Size(757, 734);
this.dgvPara.TabIndex = 26; this.dgvPara.TabIndex = 26;
this.dgvPara.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPara_CellClick); this.dgvPara.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPara_CellClick);
this.dgvPara.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvPara_RowPostPaint); this.dgvPara.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvPara_RowPostPaint);
@@ -306,8 +306,7 @@
// //
this.comboBox1.FormattingEnabled = true; this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] { this.comboBox1.Items.AddRange(new object[] {
"A芯包", "芯包"});
"B芯包"});
this.comboBox1.Location = new System.Drawing.Point(104, 640); this.comboBox1.Location = new System.Drawing.Point(104, 640);
this.comboBox1.Name = "comboBox1"; this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(121, 28); this.comboBox1.Size = new System.Drawing.Size(121, 28);
@@ -317,8 +316,7 @@
// //
this.comboBox2.FormattingEnabled = true; this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] { this.comboBox2.Items.AddRange(new object[] {
"焊前CCD", "外观检"});
"焊后CCD"});
this.comboBox2.Location = new System.Drawing.Point(104, 682); this.comboBox2.Location = new System.Drawing.Point(104, 682);
this.comboBox2.Name = "comboBox2"; this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(121, 28); this.comboBox2.Size = new System.Drawing.Size(121, 28);
@@ -575,7 +573,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38))))); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(23)))), ((int)(((byte)(38)))));
this.ClientSize = new System.Drawing.Size(1392, 734); this.ClientSize = new System.Drawing.Size(1370, 734);
this.Controls.Add(this.splitContainer1); this.Controls.Add(this.splitContainer1);
this.Font = new System.Drawing.Font("微软雅黑", 10.5F); this.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;