View constructor for creating the view details.
Inheritance: SIL.FieldWorks.Common.Framework.DetailControls.AtomicReferenceVc
		public override void SetReferenceVc()
		{
			CheckDisposed();

			m_atomicReferenceVc = new LexReferencePairVc(m_fdoCache, m_rootFlid, m_displayNameProperty);
			if (m_hvoDisplayParent != 0)
				(m_atomicReferenceVc as LexReferencePairVc).DisplayParentHvo = m_hvoDisplayParent;
		}
        public override void SetReferenceVc()
        {
            CheckDisposed();

            m_atomicReferenceVc = new LexReferencePairVc(m_fdoCache, m_rootFlid, m_displayNameProperty);
            if (m_displayParent != null)
            {
                (m_atomicReferenceVc as LexReferencePairVc).DisplayParent = m_displayParent;
            }
        }