예제 #1
0
        public void SelectAll()
        {
            if (!CanSelectAll)
            {
                return;
            }

            CurrentSelection = new LinearListSelection(0, Parent.Count);
        }
예제 #2
0
 public override void SelectAll()
 {
     CurrentSelection = new LinearListSelection(0, BaseList.Count);
 }