| | |
| | | }; |
| | | energyView1.AddChidren(btnEnergyText1); |
| | | |
| | | |
| | | double realTimePower = 0; |
| | | double.TryParse(function.GetAttrState(FunctionAttributeKey.Power), out realTimePower); |
| | | realTimePower /= 1000; |
| | | |
| | | var energyValue1 = new Button() |
| | | { |
| | | Width = Application.GetRealWidth(355), |
| | | TextAlignment = TextAlignment.CenterRight, |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | TextColor = CSS_Color.PromptingColor1, |
| | | Text = function.GetAttrState(FunctionAttributeKey.Power) + "kW", |
| | | Text = realTimePower + "kW", |
| | | }; |
| | | energyView1.AddChidren(energyValue1); |
| | | |
| | |
| | | }; |
| | | energyView2.AddChidren(btnEnergyText2); |
| | | |
| | | var energyValue2 = new Button() |
| | | var btnEnergyValue2 = new Button() |
| | | { |
| | | Width = Application.GetRealWidth(355), |
| | | TextAlignment = TextAlignment.CenterRight, |
| | |
| | | TextColor = CSS_Color.PromptingColor1, |
| | | Text = "--kW", |
| | | }; |
| | | energyView2.AddChidren(energyValue2); |
| | | energyView2.AddChidren(btnEnergyValue2); |
| | | |
| | | energyView2.AddChidren( |
| | | new Button() |
| | |
| | | Height = Application.GetRealHeight(1) |
| | | }); |
| | | |
| | | new System.Threading.Thread(() => { |
| | | var pm = new DAL.Server.HttpServerRequest(); |
| | | var data = pm.GetLastMonthHistory(function.deviceId,FunctionAttributeKey.TotalElectricity); |
| | | if(data!= null) |
| | | new System.Threading.Thread(() => |
| | | { |
| | | var pm = new HttpServerRequest(); |
| | | var data = pm.GetLastMonthHistory(function.deviceId, FunctionAttributeKey.TotalElectricity); |
| | | if (data != null) |
| | | { |
| | | if(data.Code == StateCode.SUCCESS) |
| | | if (data.Code == StateCode.SUCCESS) |
| | | { |
| | | var dataPack = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(data.Data.ToString()); |
| | | if(dataPack!=null) |
| | | if (dataPack != null) |
| | | { |
| | | var dataValue = dataPack.GetValue("property").ToString(); |
| | | if(!string.IsNullOrEmpty(dataValue)) |
| | | try |
| | | { |
| | | btnEnergyText2.Text = dataValue + "kW"; |
| | | var dataValue = dataPack.GetValue("monthDiff").ToString(); |
| | | if (!string.IsNullOrEmpty(dataValue)) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | btnEnergyValue2.Text = dataValue + "kW‧h"; |
| | | }); |
| | | } |
| | | } |
| | | catch |
| | | { |
| | | |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | }) { IsBackground = true }.Start(); |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | |
| | | #endregion |
| | | } |