Ejemplo n.º 1
0
 /// <summary>Collapses this item.</summary>
 public void Collapse()
 {
     if (_expanded)
     {
         _expanded = false;
         if (IsAttachedToListBox && IsPresented && Items.Count != 0)
         {
             ListBox.CollapseItem(this);
         }
     }
 }