public ListElementsFactoryBase(ListVisualElement owner)
 {
     m_Owner  = owner;
     Controls = new ControlsClass(this);
     if (m_Owner is IListControlAccesor)
     {
         m_Owner.Controls = Controls;
     }
 }
 public ListElementsFactory(ListVisualElement owner) : base(owner)
 {
 }