SIL.FieldWorks.Common.Framework.DetailControls.AtomicRefTypeAheadSlice.AtomicRefTypeAheadView.MakeRoot C# (CSharp) Méthode

MakeRoot() public méthode

public MakeRoot ( ) : void
Résultat void
			public override void MakeRoot()
			{
				CheckDisposed();
				base.MakeRoot();

				if (m_fdoCache == null || DesignMode)
					return;
				m_vc = new AtomicRefTypeAheadVc(m_flid, m_fdoCache);

				m_rootb = VwRootBoxClass.Create();
				m_rootb.SetSite(this);
				m_rootb.DataAccess = m_fdoCache.DomainDataByFlid;

				// arg3 is a meaningless initial fragment, since this VC only displays one thing.
				m_rootb.SetRootObject(m_hvoObj, m_vc, 1, m_styleSheet);
			}
		}