Exemplo n.º 1
0
 public void UpdatePropertyList(DrawElement obj)
 {
     // Depends on Object....
     //if (ElementTracker.Instance.TrackObj != obj)
     {
         obj.Factory.PopulatePropertyList(obj.Property);
         FactoryManager.getInstance().SetSelectedFactory(obj.Factory);
     }
 }
Exemplo n.º 2
0
        // MUST Overide this method to reflect concrete property
        public virtual void UpdateProperty(DrawElement obj)
        {
            if (obj == null)
            {
                return;
            }

            UpdatePropertyList(obj);
            m_GridView.Invalidate();
            m_Control.Invalidate();
        }
Exemplo n.º 3
0
 // Remove item from the mList
 public void Remove(DrawElement item)
 {
     mList.Remove(item);
 }