Commit b2970e3c authored by 潘栩锋's avatar 潘栩锋 🚴

修复 IBC外风主界面 更新计划忘记更新, ExAir 的都没有改回来

parent 82a7ee96
...@@ -47,24 +47,24 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -47,24 +47,24 @@ namespace FLY.IBC.UI.Client.UiModule
ibcSystemService.PLCos, ibcSystemService.PLCos,
ibcSystemService.Item, ibcSystemService.Item,
new string[] { new string[] {
"IsIBCAuto", nameof(IBC.Common.IBCData.IsIBCAuto),
"FilmWidth", nameof(IBC.Common.IBCData.FilmWidth),
"FilmWidthSet", nameof(IBC.Common.IBCData.FilmWidthSet),
"IsFilmWidthChanged", nameof(IBC.Common.IBCData.IsFilmWidthChanged),
"ErrorCorrection", nameof(IBC.Common.IBCData.ErrorCorrection),
"IsInletAirOn", nameof(IBC.Common.IBCData.IsInletAirOn),
"InletAirFreq", nameof(IBC.Common.IBCData.InletAirFreq),
"InletAirFreqSet", nameof(IBC.Common.IBCData.InletAirFreqSet),
"IsOutletAirOn", nameof(IBC.Common.IBCData.IsOutletAirOn),
"OutletAirFreq", nameof(IBC.Common.IBCData.OutletAirFreq),
"OutletAirFreqSet", nameof(IBC.Common.IBCData.OutletAirFreqSet),
"IsOutletAirFreqChanged", nameof(IBC.Common.IBCData.IsOutletAirFreqChanged),
"IsDownOutletAirOn", nameof(IBC.Common.IBCData.IsExAirOn),
"DownOutletAirFreq", nameof(IBC.Common.IBCData.ExAirFreq),
"DownOutletAirFreqSet", nameof(IBC.Common.IBCData.ExAirFreqSet)
}); });
container.BuildUp(ibcCtrlGraph); container.BuildUp(ibcCtrlGraph);
...@@ -73,14 +73,14 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -73,14 +73,14 @@ namespace FLY.IBC.UI.Client.UiModule
private async void Item_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) private async void Item_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{ {
if((ibcSystemService is IbcSystemServiceClient) && ((ibcSystemService as IbcSystemServiceClient).IsInPushValue)) if ((ibcSystemService is IbcSystemServiceClient) && ((ibcSystemService as IbcSystemServiceClient).IsInPushValue))
return; return;
if (e.PropertyName == "FilmWidthSet") if (e.PropertyName == nameof(IBC.Common.IBCData.FilmWidthSet))
{ {
await Task.Delay(1000);//1s后触发通知 await Task.Delay(1000);//1s后触发通知
ibcSystemService.Item.IsFilmWidthChanged = true; ibcSystemService.Item.IsFilmWidthChanged = true;
} }
else if (e.PropertyName == "OutletAirFreqSet") else if (e.PropertyName == nameof(IBC.Common.IBCData.OutletAirFreqSet))
{ {
await Task.Delay(1000);//1s后触发通知 await Task.Delay(1000);//1s后触发通知
ibcSystemService.Item.IsOutletAirFreqChanged = true; ibcSystemService.Item.IsOutletAirFreqChanged = true;
...@@ -137,7 +137,7 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -137,7 +137,7 @@ namespace FLY.IBC.UI.Client.UiModule
/// 控件标题 /// 控件标题
/// 它的值取决于culture /// 它的值取决于culture
/// </summary> /// </summary>
public string Title=>"IBC主界面(下吹)"; public string Title=>"IBC主界面(外风)";
public ComponentType Type => ComponentType.Graph; public ComponentType Type => ComponentType.Graph;
public bool IsUnique => true; public bool IsUnique => true;
......
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