Commit 51a94c6a authored by 潘栩锋's avatar 潘栩锋 🚴

修改 下吹M层删除熔温

parent 81578c78
......@@ -15,6 +15,7 @@
<ResourceDictionary Source="TempAreaPanelStyle.xaml"/>
<ResourceDictionary Source="UcTcStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
<local:TmTemplateVisibleConverter x:Key="tmVisConv"/>
</ResourceDictionary>
</UserControl.Resources>
<Grid d:DataContext="{StaticResource downBlowingSystemUt}">
......@@ -48,7 +49,8 @@
<ContentControl Grid.Row="4" ContentTemplate="{StaticResource TcTemplate}" Content="{Binding Temperatures[3]}" Margin="{StaticResource ControlMargin}"/>
<ContentControl Grid.Row="5" ContentTemplate="{StaticResource TcTemplate}" Content="{Binding Temperatures[4]}" Margin="{StaticResource ControlMargin}"/>
<ContentControl Grid.Row="6" ContentTemplate="{StaticResource TcTemplate}" Content="{Binding Temperatures[5]}" Margin="{StaticResource ControlMargin}"/>
<ContentControl Grid.Row="7" ContentTemplate="{StaticResource TmTemplate}" Content="{Binding .}" Margin="{StaticResource ControlMargin}"/>
<ContentControl Grid.Row="7" ContentTemplate="{StaticResource TmTemplate}" Content="{Binding .}" Margin="{StaticResource ControlMargin}"
Visibility="{Binding Number,Converter={StaticResource tmVisConv}}"/>
</Grid>
</Button>
......
......@@ -7,9 +7,11 @@ using MultiLayout.UiModule;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Threading;
using Unity;
......@@ -137,95 +139,116 @@ namespace FLY.DownBlowing.UI.Client.UiModule
}
public class SetPLCUpdatePlan : IDisposable
//public class SetPLCUpdatePlan : IDisposable
//{
// IPLCProxySystemService PLCos;
// long planid = 0;
// DispatcherTimer timer;//可能被销毁了
// string objname;
// IEnumerable<string> propertynames;
// public SetPLCUpdatePlan(IPLCProxySystemService plsos, string objname, IEnumerable<string> propertynames)
// {
// PLCos = plsos;
// this.propertynames = propertynames;
// this.objname = objname;// PLCos.ObjNames.First((kv) => kv.Value == obj).Key;
// timer = new DispatcherTimer()//120s 内必须再次注册
// {
// Interval = TimeSpan.FromSeconds(60)
// };
// timer.Tick += (s, e) =>
// {
// if (planid != 0)
// {
// PLCos.FeedPlan(planid);
// }
// };
// if (IsTimeToSetPlan())
// {
// PLCos.SetPlan(this.objname, this.propertynames, (asyncContext, retData) =>
// {
// long planid = (long)retData;
// this.planid = planid;
// timer.Start();
// }, null);
// }
// if (PLCos is PLCProxySystemServiceClient)
// PLCos.PropertyChanged += PLCos_PropertyChanged;
// }
// bool IsTimeToSetPlan()
// {
// if (PLCos is PLCProxySystemServiceClient)
// {
// var _PLCos = PLCos as PLCProxySystemServiceClient;
// if (_PLCos.IsConnected)
// {
// return true;
// }
// else
// {
// return false;
// }
// }
// else
// {
// return true;
// }
// }
// private void PLCos_PropertyChanged(object sender, PropertyChangedEventArgs e)
// {
// if (e.PropertyName == nameof(PLCProxySystemServiceClient.IsConnected))
// {
// var _PLCos = PLCos as PLCProxySystemServiceClient;
// if (_PLCos.IsConnected)
// {
// PLCos.SetPlan(objname, propertynames, (asyncContext, retData) =>
// {
// long planid = (long)retData;
// this.planid = planid;
// timer.Start();
// }, null);
// }
// else
// {
// this.planid = 0;
// timer.Stop();
// }
// }
// }
// public void Dispose()
// {
// timer.Stop();
// if (planid != 0)
// PLCos.RemovePlan(planid);
// }
//}
public class TmTemplateVisibleConverter : IValueConverter
{
IPLCProxySystemService PLCos;
long planid = 0;
DispatcherTimer timer;//可能被销毁了
string objname;
IEnumerable<string> propertynames;
public SetPLCUpdatePlan(IPLCProxySystemService plsos, string objname, IEnumerable<string> propertynames)
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
PLCos = plsos;
this.propertynames = propertynames;
this.objname = objname;// PLCos.ObjNames.First((kv) => kv.Value == obj).Key;
timer = new DispatcherTimer()//120s 内必须再次注册
if (value is string)
{
Interval = TimeSpan.FromSeconds(60)
};
timer.Tick += (s, e) =>
{
if (planid != 0)
{
PLCos.FeedPlan(planid);
}
};
if (IsTimeToSetPlan())
{
PLCos.SetPlan(this.objname, this.propertynames, (asyncContext, retData) =>
{
long planid = (long)retData;
this.planid = planid;
timer.Start();
}, null);
string number = value as string;
if (number == "M")
return Visibility.Hidden;
}
if (PLCos is PLCProxySystemServiceClient)
PLCos.PropertyChanged += PLCos_PropertyChanged;
return Visibility.Visible;
}
bool IsTimeToSetPlan()
{
if (PLCos is PLCProxySystemServiceClient)
{
var _PLCos = PLCos as PLCProxySystemServiceClient;
if (_PLCos.IsConnected)
{
return true;
}
else
{
return false;
}
}
else
{
return true;
}
}
private void PLCos_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(PLCProxySystemServiceClient.IsConnected))
{
var _PLCos = PLCos as PLCProxySystemServiceClient;
if (_PLCos.IsConnected)
{
PLCos.SetPlan(objname, propertynames, (asyncContext, retData) =>
{
long planid = (long)retData;
this.planid = planid;
timer.Start();
}, null);
}
else
{
this.planid = 0;
timer.Stop();
}
}
}
public void Dispose()
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
timer.Stop();
if (planid != 0)
PLCos.RemovePlan(planid);
throw new NotImplementedException();
}
}
}
......@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.8.1.0")]
[assembly: AssemblyFileVersion("7.8.1.0")]
[assembly: AssemblyVersion("7.8.2.0")]
[assembly: AssemblyFileVersion("7.8.2.0")]
[assembly: Guid("38E0D8EC-4D1C-49FF-AB08-6289294C5BD4")]
{
"Version": "v0.7和美立式",
"Devices": [
{
"PlcName": null,
"EP": "192.168.50.40:502"
}
],
"Variables": [
{
"DeviceIndex": 0,
"Mode": "4",
"Addr": 980,
"Type": "float",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "VelocitySet",
"RegAddr": "汇川H3U 监控协议.D(980)"
},
{
"DeviceIndex": 0,
"Mode": "4",
"Addr": 180,
"Type": "float",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "Velocity",
"RegAddr": "汇川H3U 监控协议.D(180)"
},
{
"DeviceIndex": 0,
"Mode": "0",
"Addr": 1301,
"Type": "bool",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "IsRotaryForw",
"RegAddr": "汇川H3U 监控协议.M(1301)"
},
{
"DeviceIndex": 0,
"Mode": "0",
"Addr": 1300,
"Type": "bool",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "IsRotaryBackw",
"RegAddr": "汇川H3U 监控协议.M(1300)"
},
{
"DeviceIndex": 0,
"Mode": "1",
"Addr": 63512,
"Type": "bool",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "IsRotaryForwTurn",
"RegAddr": "汇川H3U 监控协议.X(30)"
},
{
"DeviceIndex": 0,
"Mode": "1",
"Addr": 63513,
"Type": "bool",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "IsRotaryBackwTurn",
"RegAddr": "汇川H3U 监控协议.X(31)"
},
{
"DeviceIndex": 0,
"Mode": "4",
"Addr": 1380,
"Type": "uint16",
"Scale": 0.01,
"OwnerName": "Accessory",
"PropertyName": "RotaryFreqSet",
"RegAddr": "汇川H3U 监控协议.D(1380)"
},
{
"DeviceIndex": 0,
"Mode": "4",
"Addr": 1381,
"Type": "uint16",
"Scale": 0.01,
"OwnerName": "Accessory",
"PropertyName": "RotaryFreq",
"RegAddr": "汇川H3U 监控协议.D(1381)"
},
{
"DeviceIndex": 0,
"Mode": "0",
"Addr": 411,
"Type": "bool",
"Scale": 1.0,
"OwnerName": "Accessory",
"PropertyName": "IsRotaryOn",
"RegAddr": "汇川H3U 监控协议.M(411)"
}
]
}
\ No newline at end of file
{
"InstallZipVersion":"7.8.1.1",
"InstallZipUrl":"http://server.flyautomation.net:8889/download/和美安装包_v7.8.1.1_20230407.7z"
"InstallZipVersion":"7.8.2.0",
"InstallZipUrl":"http://server.flyautomation.net:8889/download/和美安装包_v7.8.2.0_20230615.7z"
}
\ No newline at end of file
{"Interval":6,"IsYRangeAuto":false,"IsYRangePercent":true,"YRangePercent":0.15,"YRange":20}
\ No newline at end of file
......@@ -29,7 +29,7 @@
},
{
"Key": "HaveWeight",
"Value": true
"Value": false
},
{
"Key": "HaveIbc",
......@@ -41,15 +41,15 @@
},
{
"Key": "HaveDownBlowing",
"Value": true
"Value": false
},
{
"Key": "HaveTArea",
"Value": true
"Value": false
},
{
"Key": "HaveFeeder",
"Value": true
"Value": false
},
{
"Key": "WarningTipPath",
......
......@@ -61,7 +61,7 @@
"Number": 0,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 21887914
"ID": 51259474
}
]
}
\ No newline at end of file
......@@ -10,7 +10,7 @@
"Interval": 1,
"YRangePercent": 3.0,
"Mix": 1,
"ID": 21887914
"ID": 51259474
}
]
}
\ No newline at end of file
......@@ -191,6 +191,23 @@
],
"Header": "趋势"
},
{
"Graphs": [
{
"ID": 25308200,
"Rect": "0, 0, 1, 1"
}
],
"ColumnCount": 1,
"RowCount": 1,
"RowDefinitions": [
false
],
"ColumnDefinitions": [
false
],
"Header": "趋势2"
},
{
"Graphs": [
{
......@@ -282,6 +299,36 @@
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_DynAreaIbc",
"ServiceContainerName": "gage0.service"
},
{
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9147936,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 57497710,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ServiceContainerName": "gage0.service"
},
{
"ID": 33818429,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MainPanelV4",
......@@ -352,6 +399,11 @@
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 25308200,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43629015,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraphCircular",
......@@ -366,36 +418,6 @@
"ID": 18036132,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9147936,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 57497710,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ServiceContainerName": "gage0.service"
}
]
}
......
{"Items":[{"UiModule":"scangraph2","YRangePercent":3.0,"Mix":1,"Number":-5,"IsPercent":true,"IsAutoTarget":true,"ID":28722627},{"UiModule":"scangraph2","YRangePercent":3.0,"Mix":1,"Number":0,"IsPercent":true,"IsAutoTarget":true,"ID":44810590},{"UiModule":"scangraph","YRangePercent":3.0,"Mix":1,"Number":-15,"IsPercent":true,"IsAutoTarget":true,"ID":19620867},{"UiModule":"scangraph","YRangePercent":3.0,"Mix":1,"Number":-10,"IsPercent":true,"IsAutoTarget":true,"ID":23742817},{"UiModule":"scangraph","YRangePercent":3.0,"Mix":1,"Number":-5,"IsPercent":true,"IsAutoTarget":true,"ID":9828942},{"UiModule":"scangraph2","YRangePercent":3.0,"Mix":1,"Number":0,"IsPercent":true,"IsAutoTarget":true,"ID":37500900}]}
\ No newline at end of file
{
"Items": [
{
"UiModule": "scangraph2",
"YRangePercent": 3.0,
"Mix": 1,
"Number": -5,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 28722627
},
{
"UiModule": "scangraph2",
"YRangePercent": 3.0,
"Mix": 1,
"Number": 0,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 44810590
},
{
"UiModule": "scangraph",
"YRangePercent": 3.0,
"Mix": 1,
"Number": -15,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 19620867
},
{
"UiModule": "scangraph",
"YRangePercent": 3.0,
"Mix": 1,
"Number": -10,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 23742817
},
{
"UiModule": "scangraph",
"YRangePercent": 3.0,
"Mix": 1,
"Number": -5,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 9828942
},
{
"UiModule": "scangraph2",
"YRangePercent": 3.0,
"Mix": 1,
"Number": 0,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 37500900
},
{
"UiModule": "scangraph",
"YRangePercent": 3.0,
"Mix": 1,
"Number": 0,
"IsPercent": true,
"IsAutoTarget": true,
"ID": 25308200
}
]
}
\ No newline at end of file
......@@ -5,6 +5,12 @@
"YRangePercent": 3.0,
"Mix": 1,
"ID": 51283066
},
{
"Interval": 1,
"YRangePercent": 3.0,
"Mix": 1,
"ID": 25308200
}
]
}
\ No newline at end of file
{"Interval":6,"IsYRangeAuto":false,"IsYRangePercent":true,"YRangePercent":0.15,"YRange":20}
\ No newline at end of file
......@@ -28,7 +28,7 @@
{
"Graphs": [
{
"ID": 17447856,
"ID": 6879063,
"Rect": "0, 0, 1, 1"
}
],
......@@ -234,173 +234,173 @@
],
"Components": [
{
"ID": 17447856,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MainPanel2",
"ID": 12961752,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 18841703,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_CenterWinderPanel",
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 17611460,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MainGraph",
"ID": 9147936,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 42110414,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MainPanel2",
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 61787501,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_TempAreaPanel",
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 48662582,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_GraphAirRing",
"ID": 57497710,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28722627,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44810590,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 31616714,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaThick",
"ServiceContainerName": "gage0.service"
},
{
"ID": 19620867,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 9306904,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_DynAreaProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 23742817,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 27935207,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaFilmWidth",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9828942,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 64726287,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaSample",
"ServiceContainerName": "gage0.service"
},
{
"ID": 37500900,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 48687165,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaBlowing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 45213180,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_FlowGraph",
"ID": 21215025,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaIO",
"ServiceContainerName": "gage0.service"
},
{
"ID": 51283066,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph",
"ID": 28692214,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_DynAreaAirRing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43629015,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraphCircular",
"ID": 40975656,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_DynAreaWeight",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28792051,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ID": 29037722,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_DynAreaWinder",
"ServiceContainerName": "gage0.service"
},
{
"ID": 18036132,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ID": 13189467,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_DynAreaIbc",
"ServiceContainerName": "gage0.service"
},
{
"ID": 12961752,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 6879063,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MainPanel",
"ServiceContainerName": "gage0.service"
},
{
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 18841703,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_CenterWinderPanel",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9147936,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting2",
"ID": 17611460,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MainGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 42110414,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MainPanel2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 61787501,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_TempAreaPanel",
"ServiceContainerName": "gage0.service"
},
{
"ID": 57497710,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ID": 48662582,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_GraphAirRing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ID": 28722627,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 31616714,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaThick",
"ID": 44810590,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9306904,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_DynAreaProfile",
"ID": 19620867,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 27935207,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaFilmWidth",
"ID": 23742817,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 64726287,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaSample",
"ID": 9828942,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 48687165,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaBlowing",
"ID": 37500900,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 21215025,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaIO",
"ID": 45213180,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_FlowGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28692214,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_DynAreaAirRing",
"ID": 51283066,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 40975656,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_DynAreaWeight",
"ID": 43629015,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraphCircular",
"ServiceContainerName": "gage0.service"
},
{
"ID": 29037722,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_DynAreaWinder",
"ID": 28792051,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 13189467,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_DynAreaIbc",
"ID": 18036132,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ServiceContainerName": "gage0.service"
}
]
......
[
{
"Key": "LCUS1_PortName",
"Value": "COM1"
},
{
"Key": "LCUS1_Enable",
"Value": false
},
{
"Key": "XStep",
"Value": 5
},
{
"Key": "HaveOSK",
"Value": true
},
{
"Key": "HaveOSK_mouse",
"Value": true
},
{
"Key": "gage0.service.stateChanged",
"Value": null
},
{
"Key": "HaveThick",
"Value": true
},
{
"Key": "HaveWeight",
"Value": false
},
{
"Key": "HaveIbc",
"Value": false
},
{
"Key": "HaveWinder",
"Value": false
},
{
"Key": "HaveDownBlowing",
"Value": false
},
{
"Key": "HaveTArea",
"Value": false
},
{
"Key": "HaveFeeder",
"Value": false
},
{
"Key": "WarningTipPath",
"Value": ""
},
{
"Key": "WarningDurationSec",
"Value": 5
},
{
"Key": "EnableScanErrBigTip",
"Value": false
}
]
\ No newline at end of file
{"Items":[{"Len":120,"BeginNo":0,"EndNo":20,"IsAll":true,"Type":0,"XType":0,"BM":0,"YRangePercent":3.0,"Title":"趋势图","Mix":1,"IsAutoTarget":true,"IsPercent":true,"ID":48220637}]}
\ No newline at end of file
{
"Items": [
{
"Interval": 1,
"YRangePercent": 3.0,
"Mix": 1,
"ID": 51283066
}
]
}
\ No newline at end of file
{"Interval":6,"IsYRangeAuto":false,"IsYRangePercent":true,"YRangePercent":0.15,"YRange":20}
\ No newline at end of file
......@@ -28,7 +28,7 @@
{
"Graphs": [
{
"ID": 17447856,
"ID": 1583029,
"Rect": "0, 0, 1, 1"
}
],
......@@ -217,168 +217,168 @@
],
"Components": [
{
"ID": 17447856,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MainPanel2",
"ID": 12961752,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 18841703,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_CenterWinderPanel",
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 17611460,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MainGraph",
"ID": 17540489,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 42110414,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MainPanel2",
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 48662582,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_GraphAirRing",
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28722627,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 19107831,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44810590,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ServiceContainerName": "gage0.service"
},
{
"ID": 19620867,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 31616714,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaThick",
"ServiceContainerName": "gage0.service"
},
{
"ID": 23742817,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 63198193,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_DynAreaProfile",
"ServiceContainerName": "gage0.service"
},
{
"ID": 9828942,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ID": 27935207,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaFilmWidth",
"ServiceContainerName": "gage0.service"
},
{
"ID": 37500900,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ID": 64726287,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaSample",
"ServiceContainerName": "gage0.service"
},
{
"ID": 45213180,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_FlowGraph",
"ID": 48687165,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaBlowing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 51283066,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph",
"ID": 21215025,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaIO",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43629015,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraphCircular",
"ID": 28692214,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_DynAreaAirRing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28792051,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ID": 40975656,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_DynAreaWeight",
"ServiceContainerName": "gage0.service"
},
{
"ID": 18036132,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ID": 29037722,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_DynAreaWinder",
"ServiceContainerName": "gage0.service"
},
{
"ID": 12961752,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 13189467,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_DynAreaIbc",
"ServiceContainerName": "gage0.service"
},
{
"ID": 24847051,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 1583029,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_MainPanel",
"ServiceContainerName": "gage0.service"
},
{
"ID": 17540489,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 18841703,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_CenterWinderPanel",
"ServiceContainerName": "gage0.service"
},
{
"ID": 44866487,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 17611460,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_MainGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 43552930,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_MenuSetting",
"ID": 42110414,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_MainPanel2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 19107831,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_MenuProfile",
"ID": 48662582,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_GraphAirRing",
"ServiceContainerName": "gage0.service"
},
{
"ID": 66283545,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_MenuMotion",
"ID": 28722627,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 31616714,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaThick",
"ID": 44810590,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 63198193,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_DynAreaProfile",
"ID": 19620867,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 27935207,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaFilmWidth",
"ID": 23742817,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 64726287,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaSample",
"ID": 9828942,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 48687165,
"Module": "FLY.Thick.BlowingScan.UI.Client.UiModule.UiModule2_DynAreaBlowing",
"ID": 37500900,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraph2",
"ServiceContainerName": "gage0.service"
},
{
"ID": 21215025,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_DynAreaIO",
"ID": 45213180,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_FlowGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 28692214,
"Module": "FLY.FeedbackRenZiJia.UI.Client.UiModule.UiModule2_DynAreaAirRing",
"ID": 51283066,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_TrendGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 40975656,
"Module": "FLY.Weight.UI.Client.UiModule.UiModule2_DynAreaWeight",
"ID": 43629015,
"Module": "FLY.Thick.Blowing.UI.UiModule.UiModule2_ScanGraphCircular",
"ServiceContainerName": "gage0.service"
},
{
"ID": 29037722,
"Module": "FLY.Winder.UI.Client.UiModule.UiModule2_DynAreaWinder",
"ID": 28792051,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ServiceContainerName": "gage0.service"
},
{
"ID": 13189467,
"Module": "FLY.IBC.UI.Client.UiModule.UiModule2_DynAreaIbc",
"ID": 18036132,
"Module": "FLY.Thick.Base.UI.UiModule.UiModule2_FixGraph",
"ServiceContainerName": "gage0.service"
}
]
......
[
{
"Key": "LCUS1_PortName",
"Value": "COM1"
},
{
"Key": "LCUS1_Enable",
"Value": false
},
{
"Key": "XStep",
"Value": 5
},
{
"Key": "HaveOSK",
"Value": true
},
{
"Key": "HaveOSK_mouse",
"Value": true
},
{
"Key": "gage0.service.stateChanged",
"Value": null
},
{
"Key": "HaveThick",
"Value": true
},
{
"Key": "HaveWeight",
"Value": false
},
{
"Key": "HaveIbc",
"Value": false
},
{
"Key": "HaveWinder",
"Value": false
},
{
"Key": "HaveDownBlowing",
"Value": false
},
{
"Key": "HaveTArea",
"Value": false
},
{
"Key": "HaveFeeder",
"Value": false
},
{
"Key": "WarningTipPath",
"Value": ""
},
{
"Key": "WarningDurationSec",
"Value": 5
},
{
"Key": "EnableScanErrBigTip",
"Value": false
}
]
\ No newline at end of file
{"Items":[{"Len":120,"BeginNo":0,"EndNo":20,"IsAll":true,"Type":0,"XType":0,"BM":0,"YRangePercent":3.0,"Title":"趋势图","Mix":1,"IsAutoTarget":true,"IsPercent":true,"ID":48220637}]}
\ No newline at end of file
{
"Items": [
{
"Interval": 1,
"YRangePercent": 3.0,
"Mix": 1,
"ID": 51283066
}
]
}
\ No newline at end of file
# 和美安装包_v7.8.2-202306
## 测厚仪服务器 v7.8.0
## 测厚仪客户端 v7.7.4
## 扫描测厚仪服务器 v7.6.1
## 扫描测厚仪客户端 v7.8.2
1. 修复 下吹界面 M层不应该有熔温
## 自动风环 v7.6.1
## 称重 v7.7.1
## 称重单组 v7.6.0
## 收卷 v7.8.0
## IBC v7.6.0
## 下吹 v7.6.1
## 吹膜数据库浏览器 v7.0.0
<br/>
<br/>
<br/>
# 和美安装包_v7.8.1-20230407
## 测厚仪服务器 v7.8.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment