| | |
| | | return m_Current;
|
| | | }
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 消息控件单击的事件
|
| | | /// </summary>
|
| | | public Action MsgClickEvent = null;
|
| | | /// <summary>
|
| | | /// 界面关闭的事件
|
| | | /// </summary>
|
| | | public Action CloseEvent = null;
|
| | | /// <summary>
|
| | | /// 容器控件
|
| | | /// </summary>
|
| | |
| | | this.oldScrollEnabled = UserView.HomePage.Instance.ScrollEnabled;
|
| | | UserView.HomePage.Instance.ScrollEnabled = false;
|
| | | Shared.Common.CommonPage.BackKeyCanClick = false;
|
| | |
|
| | | this.oldPrigressVisible = Common.CommonPage.Loading.Visible;
|
| | | if (oldPrigressVisible == true)
|
| | | {
|
| | |
| | | btnText.TextColor = UserCenterColor.Current.TextGrayColor1;
|
| | | btnText.TextAlignment = TextAlignment.Center;
|
| | | frameBack.AddChidren(btnText);
|
| | | btnText.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | this.MsgClickEvent?.Invoke();
|
| | | };
|
| | |
|
| | | //进度条
|
| | | var btnProRow = new FrameLayout();
|
| | |
| | | btnProgressView = null;
|
| | | frameProgress = null;
|
| | | btnProgressBar = null;
|
| | | this.MsgClickEvent = null;
|
| | | //关闭事件
|
| | | this.CloseEvent?.Invoke();
|
| | | this.CloseEvent = null;
|
| | | });
|
| | | }
|
| | |
|