public void Show() { if (window == null) { window = new CustomWindow (this, content, cancelable, width, height, showType, anchor); } window.Show (); }
public void Show() { if (window == null) { window = new CustomWindow(this, content, cancelable, width, height, showType, anchor); } window.Show(); }
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); }
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); }
public void OnChildClosed() { window.CustomParent = null; window = null; }