예제 #1
0
        public bool GetChecked(int Index)
        {
            bool result = false;

            if (Index >= 0 && Index < fItems.Count)
            {
                result = fItems.GetItem(Index).Checked;
            }
            return(result);
        }
예제 #2
0
        private void ReindexList(LBItemList aList, ref int aIndex)
        {
            int num = aList.Count;

            for (int i = 0; i < num; i++)
            {
                aIndex++;
                LBItem item = aList.GetItem(i);
                item.AbsoluteIndex = aIndex;
                item.VisibleIndex  = aIndex;
                fColumnSize++;
            }
        }