Beispiel #1
0
        public void Show()
        {
            if (window == null) {
                window = new CustomWindow (this,  content, cancelable, width, height, showType, anchor);
            }

            window.Show ();
        }
Beispiel #2
0
        public void Show()
        {
            if (window == null)
            {
                window = new CustomWindow(this, content, cancelable, width, height, showType, anchor);
            }

            window.Show();
        }
Beispiel #3
0
 public CustomPopup( UIView _content,bool _cancelable, nfloat _width, nfloat _height, ShowType _showType, UIView _anchor = null)
 {
     cancelable = _cancelable;
     content = _content;
     width = _width;
     height = _height;
     anchor = _anchor;
     showType = _showType;
     window = new CustomWindow (this, content, cancelable, width, height, showType, anchor);
 }
Beispiel #4
0
 public CustomPopup(UIView _content, bool _cancelable, nfloat _width, nfloat _height, ShowType _showType, UIView _anchor = null)
 {
     cancelable = _cancelable;
     content    = _content;
     width      = _width;
     height     = _height;
     anchor     = _anchor;
     showType   = _showType;
     window     = new CustomWindow(this, content, cancelable, width, height, showType, anchor);
 }
Beispiel #5
0
 public void OnChildClosed()
 {
     window.CustomParent = null;
     window = null;
 }
Beispiel #6
0
 public void OnChildClosed()
 {
     window.CustomParent = null;
     window = null;
 }