Beispiel #1
0
 internal BootstrapperItemArgs(IBootstrapperItem item)
 {
     this.Item = item;
 }
 /// <summary>
 /// Loads all bootstrapper items
 /// </summary>
 internal void LoadBootstrapperItems()
 {
     m_items.AddRange(SeeingSharpApplication.Current.TypeQuery.GetAndInstanciateByContract <IBootstrapperItem>());
     m_currentItem = null;
     m_booted      = false;
 }