コード例 #1
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
        public void Show()
        {
            if (window == null) {
                window = new CustomWindow (this,  content, cancelable, width, height, showType, anchor);
            }

            window.Show ();
        }
コード例 #2
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
        public void Show()
        {
            if (window == null)
            {
                window = new CustomWindow(this, content, cancelable, width, height, showType, anchor);
            }

            window.Show();
        }
コード例 #3
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
 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);
 }
コード例 #4
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
 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);
 }
コード例 #5
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
 public void OnChildClosed()
 {
     window.CustomParent = null;
     window = null;
 }
コード例 #6
0
ファイル: IosXFPopupSrvc.cs プロジェクト: thaihung203/xfpopup
 public void OnChildClosed()
 {
     window.CustomParent = null;
     window = null;
 }