예제 #1
0
 public void Remove(Inset p_Inset)
 {
     if (List.IndexOf(p_Inset) == m_SelIndex)
         m_SelIndex = -1;
     List.Remove(p_Inset);
 }
예제 #2
0
 public void Add(Inset p_Inset)
 {
     List.Add(p_Inset);
     m_SelIndex = List.Count - 1;
 }