| | |
| | | /// </summary> |
| | | void LoadEvent_Server() |
| | | { |
| | | //判断之前是否选择过 |
| | | if (UserInfo.Current.GlobalRegion != null && !string.IsNullOrEmpty(UserInfo.Current.GlobalRegion.regionUrl)) |
| | | { |
| | | |
| | | SetServerText(); |
| | | } |
| | | |
| | | EventHandler<MouseEventArgs> eventHandler = (sender, e) => |
| | | { |
| | | Action selectAction = () => |
| | | { |
| | | //服务器选择过标记为true |
| | | isSelectServer = true; |
| | | ShowServerBottomLineState(false); |
| | | btnServerText.TextColor = CSS_Color.FirstLevelTitleColor; |
| | | btnServerText.Text = UserInfo.Current.GlobalRegion.regionName; |
| | | SetServerText(); |
| | | }; |
| | | new SelectServerDialog(selectAction).LoadPage(); |
| | | |
| | |
| | | btnServerBottomLine.Height = Application.GetRealHeight(1); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | void SetServerText() |
| | | { |
| | | //服务器选择过标记为true |
| | | isSelectServer = true; |
| | | ShowServerBottomLineState(false); |
| | | btnServerText.TextColor = CSS_Color.FirstLevelTitleColor; |
| | | btnServerText.Text = UserInfo.Current.GlobalRegion.regionName; |
| | | } |
| | | } |
| | | } |