Commit 0de2b554 authored by 潘栩锋's avatar 潘栩锋 🚴

优化 IBC MainPanel 与 MainPanel2 属性名都改为 nameof

parent 7ba9b19c
...@@ -49,9 +49,6 @@ ...@@ -49,9 +49,6 @@
</Setter.Value> </Setter.Value>
</Setter> </Setter>
</Style> </Style>
<local:ToggleButtonText x:Key="tbt_inletAir" IsCheckText="运行" NoCheckText="停止"/>
<local:ToggleButtonText x:Key="tbt_outletAir" IsCheckText="运行" NoCheckText="停止"/>
<local:ToggleButtonText x:Key="tbt_IBC" IsCheckText="自动" NoCheckText="手动"/>
</ResourceDictionary> </ResourceDictionary>
</UserControl.Resources> </UserControl.Resources>
......
...@@ -49,9 +49,6 @@ ...@@ -49,9 +49,6 @@
</Setter.Value> </Setter.Value>
</Setter> </Setter>
</Style> </Style>
<local:ToggleButtonText x:Key="tbt_inletAir" IsCheckText="运行" NoCheckText="停止"/>
<local:ToggleButtonText x:Key="tbt_outletAir" IsCheckText="运行" NoCheckText="停止"/>
<local:ToggleButtonText x:Key="tbt_IBC" IsCheckText="自动" NoCheckText="手动"/>
</ResourceDictionary> </ResourceDictionary>
</UserControl.Resources> </UserControl.Resources>
......
...@@ -47,24 +47,20 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -47,24 +47,20 @@ 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",
"DownOutletAirFreq",
"DownOutletAirFreqSet",
}); });
container.BuildUp(ibcCtrlGraph); container.BuildUp(ibcCtrlGraph);
...@@ -73,20 +69,21 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -73,20 +69,21 @@ 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;
} }
} }
private void button_inletAir_plus_Click(object sender, RoutedEventArgs e) private void button_inletAir_plus_Click(object sender, RoutedEventArgs e)
{ {
if (ibcSystemService.Item.InletAirFreqSet < 49.9) if (ibcSystemService.Item.InletAirFreqSet < 49.9)
...@@ -118,11 +115,7 @@ namespace FLY.IBC.UI.Client.UiModule ...@@ -118,11 +115,7 @@ namespace FLY.IBC.UI.Client.UiModule
w.ShowDialog(); w.ShowDialog();
} }
} }
public class ToggleButtonText
{
public string IsCheckText { get; set; }
public string NoCheckText { get; set; }
}
public class UiModule2_MainPanel : IUiModule2 public class UiModule2_MainPanel : IUiModule2
{ {
......
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