コード例 #1
0
 /// <summary>
 /// Shortcut method to inform the control that the structure has changed.
 /// </summary>
 private void MarkStructure()
 {
     if (owner != null)
     {
         owner.MarkStructuralChange();
     }
 }
コード例 #2
0
 /// <summary>
 /// Sorts the items in the collection based on item weight.
 /// </summary>
 public void Sort()
 {
     items.Sort();
     container.MarkStructuralChange();
 }