From 1789f33db1b549f0211258d828c551cc33c7c407 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期四, 03 八月 2023 15:46:18 +0800 Subject: [PATCH] cct控制组件高度 --- 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