File was renamed from ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Form/AreaCodeSelectForm.cs |
| | |
| | | using System.Collections.Generic; |
| | | using System.Text; |
| | | |
| | | namespace Shared.Phone.UserCenter |
| | | namespace Shared.Phone |
| | | { |
| | | public class AreaCodeSelectForm : DialogCommonForm |
| | | { |
| | |
| | | |
| | | //请选择区号 |
| | | var btnTitle = new NormalViewControl(270, 60, true); |
| | | btnTitle.X = ControlCommonResourse.XXLeft; |
| | | btnTitle.X = HdlControlResourse.XXLeft; |
| | | btnTitle.Y = Application.GetRealHeight(69); |
| | | btnTitle.TextID = R.MyInternationalizationString.uPleaseSelectAreaCode; |
| | | btnTitle.TextSize = 15; |
| | |
| | | //开启进度条 |
| | | ProgressBar.Show(); |
| | | |
| | | //☆マーク☆ 地区代码列表 |
| | | //获取全部的地区代码列表 |
| | | var Pra = new { Common.CommonPage.RequestVersion }; |
| | | string result = UserCenterLogic.GetResponseDataByRequestHttps("ZigbeeUsers/GetAreaCode", false, Pra); |
| | | //var Pra = new { Common.CommonPage.RequestVersion }; |
| | | //string result = HdlUserCenterLogic.GetResponseDataByRequestHttps("ZigbeeUsers/GetAreaCode", false, Pra); |
| | | string result = string.Empty; |
| | | //关闭进度条 |
| | | ProgressBar.Close(); |
| | | if (string.IsNullOrEmpty(result) == true) |