| | |
| | | accountFL.AddChidren(PhoneZoneBtn); |
| | | PhoneZoneBtn.MouseUpEventHandler += (sender, e) => |
| | | { |
| | | var form = new AreaCodeSelectForm();
parFL.AddChidren(form);
form.InitForm();
form.ShowForm();
form.FinishSelectEvent += (code) =>
{
(sender as Button).Text = "+" + code;
CommonPage.PhoneZoneStr = code;
}; |
| | | var form = new AreaCodeSelectForm(); |
| | | parFL.AddChidren(form); |
| | | form.InitForm(); |
| | | form.ShowForm(); |
| | | form.FinishSelectEvent += (code) => |
| | | { |
| | | (sender as Button).Text = "+" + code; |
| | | CommonPage.PhoneZoneStr = code; |
| | | }; |
| | | }; |
| | | |
| | | AccountET = new EditText() |
| | |
| | | accountFL.AddChidren(accountLine); |
| | | |
| | | AccountET.FoucsChanged += Text_FoucesChangeEvent; |
| | | |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | AccountET = new EditText() |
| | | { |
| | | X = Application.GetRealWidth(193), |
| | | X = Application.GetRealWidth(222), |
| | | Width = Application.GetRealWidth(700), |
| | | Height = Application.GetRealHeight(Button_Height), |
| | | Gravity = Gravity.CenterVertical, |