Example #1
0
        public void Add(I図形 fig)
        {
            m_図形List.Add(fig);

            if (OnChangedData != null)
                OnChangedData();
        }
Example #2
0
 public void Remove(I図形 fig)
 {
     int index = m_図形List.IndexOf(fig);
     if (index >= 0)
     {
         this.Remove(index);
     }
 }