Exemplo n.º 1
0
 public void Show()
 {
     if (UIWindowManager.AddWindow(this))
     {
         DidShow();
     }
 }
Exemplo n.º 2
0
        public void Close()
        {
            ClearComponents();

            if (UIWindowManager.RemoveWindow(this))
            {
                DidRemove();
            }
        }
Exemplo n.º 3
0
 protected void ReleaseKeyboardFocus()
 {
     UIWindowManager.CaptureKeyboardFocus(null);
 }
Exemplo n.º 4
0
 protected void CaptureKeyboardFocus()
 {
     UIWindowManager.CaptureKeyboardFocus(this);
 }
Exemplo n.º 5
0
 protected void ReleaseInput()
 {
     UIWindowManager.CaptureComponent(null);
 }
Exemplo n.º 6
0
 protected void CaptureInput()
 {
     UIWindowManager.CaptureComponent(this);
 }