public void AddSubview(BaseEditorView xView)
        {
            xView.RemoveFromSuperview();

            m_pxSubviews.Add(xView);
            xView.Superview = this;
        }
        public void AddSubview( BaseEditorView xView )
        {
            xView.RemoveFromSuperview();

            m_pxSubviews.Add( xView );
            xView.Superview = this;
        }
Exemple #3
0
 public void AddSubview(BaseEditorView xView)
 {
     xView.SourceWindow = this;
     m_pxSubviews.Add(xView);
 }
 public void AddSubview( BaseEditorView xView )
 {
     xView.SourceWindow = this;
     m_pxSubviews.Add( xView );
 }