| | |
| | | TextColor = CSS_Color.MainBackgroundColor, |
| | | TextAlignment = TextAlignment.Center, |
| | | TextSize = CSS_FontSize.SubheadingFontSize, |
| | | TextID = StringId.Complete |
| | | Text = "执行" |
| | | }; |
| | | bottomView.AddChidren(btnComplete); |
| | | |
| | |
| | | |
| | | |
| | | btnComplete.MouseUpEventHandler = (sender, e) => { |
| | | this.Close(); |
| | | //this.Close(); |
| | | |
| | | var waitPage = new Loading(); |
| | | MainPage.BaseView.AddChidren(waitPage); |
| | |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | new PublicAssmebly().TipMsgAutoClose("组合控制已执行", true); |
| | | if (waitPage != null) |
| | | { |
| | | backAction(null); |
| | | //backAction(null); |
| | | waitPage.RemoveFromParent(); |
| | | } |
| | | }); |