From a593865206070ec322ff04b7a466b4d8de4521f1 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期四, 03 八月 2023 15:46:25 +0800 Subject: [PATCH] Merge branch 'wxr-2.1' of http://172.16.1.23:6688/r/~wxr/OnPro into wxr-2.1 --- HDL_ON/UI/UI2/FuntionControlView/Electrical/AirSwitchP3EnergyPage.cs | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/AirSwitchP3EnergyPage.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/AirSwitchP3EnergyPage.cs index 2166a5e..c08e442 100644 --- a/HDL_ON/UI/UI2/FuntionControlView/Electrical/AirSwitchP3EnergyPage.cs +++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/AirSwitchP3EnergyPage.cs @@ -452,19 +452,21 @@ btnTitlea.MouseUpEventHandler = (sender, e) => { var skipView = new AirSwitchP3SubloopEnergyPage(device,FunctionAttributeKey.ElectricityA); MainPage.BasePageView.AddChidren(skipView); - skipView.LoadPage(); + skipView.LoadPage(StringId.RealTimeElectricityConsumptionDataOfPhaseA); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; }; - btnTitlea.MouseUpEventHandler = (sender, e) => { + + btnTitleb.MouseUpEventHandler = (sender, e) => { var skipView = new AirSwitchP3SubloopEnergyPage(device, FunctionAttributeKey.ElectricityB); MainPage.BasePageView.AddChidren(skipView); - skipView.LoadPage(); + skipView.LoadPage(StringId.RealTimeElectricityConsumptionDataOfPhaseB); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; }; - btnTitlea.MouseUpEventHandler = (sender, e) => { + + btnTitlec.MouseUpEventHandler = (sender, e) => { var skipView = new AirSwitchP3SubloopEnergyPage(device, FunctionAttributeKey.ElectricityC); MainPage.BasePageView.AddChidren(skipView); - skipView.LoadPage(); + skipView.LoadPage(StringId.RealTimeElectricityConsumptionDataOfPhaseC); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; }; -- Gitblit v1.8.0