Esempio n. 1
0
 protected ScreenBase(MenuScreen proxy)
 {
     this.proxyBase = proxy;
 }
Esempio n. 2
0
            public Screen(ConfirmationPopUp proxy, string title, string description, TimeSpan?timeout = null, MenuScreen underlyingMenuScreen = null)
            {
                this.proxy = proxy;
                this.underlyingMenuScreen = underlyingMenuScreen;

                underlyingMenuScreen?.DisableInput();

                Game.UI.LoadLayoutToElement(MenuUIManager.MenuRoot, Game.ResourceCache, "UI/PopUpConfirmationLayout.xml");
                this.popUpWindow    = (Window)MenuUIManager.MenuRoot.GetChild("PopUpConfirmationWindow");
                popUpWindow.Visible = true;
                popUpWindow.BringToFront();

                using (var titleElem = (Text)popUpWindow.GetChild("Title", true)) {
                    titleElem.Value = title;
                }

                using (var descriptionElem = (Text)popUpWindow.GetChild("Description", true)) {
                    descriptionElem.Value = description;
                }

                confirmButton           = (Button)popUpWindow.GetChild("ConfirmButton", true);
                confirmButton.Released += Button_Released;

                cancelButton           = (Button)popUpWindow.GetChild("CancelButton", true);
                cancelButton.Released += Button_Released;

                taskSource = new TaskCompletionSource <bool>();

                if (timeout != null)
                {
                    timeoutCancel = new CancellationTokenSource();
                    Task.Delay(timeout.Value, timeoutCancel.Token).ContinueWith(TimeOutExpired, TaskContinuationOptions.NotOnCanceled);
                }
            }
Esempio n. 3
0
 public void Clear()
 {
     PreviousScreens = new Stack <MenuScreen>();
     CurrentScreen?.Hide();
     CurrentScreen = null;
 }