Пример #1
0
        public void SortHandler()
        {
            if (sortAscending == null || sortAscending == false)
            {
                sortAscending = true;
            }
            else
            {
                sortAscending = false;
            }

            listViewManager.Sort(text, (bool)sortAscending);
        }