示例#1
0
        private void RefreshOwner(int index, SizeViewItem value)
        {
            IViewLayoutList pViewLayoutList = this.m_Owner as IViewLayoutList;

            if (pViewLayoutList != null)
            {
                if (pViewLayoutList.TopViewItemIndex >= index && pViewLayoutList.BottomViewItemIndex <= index)
                {
                    this.m_Owner.Refresh();
                }
            }
            else
            {
                this.m_Owner.Refresh();
            }
        }
 internal SelectedIndexCollection(IViewLayoutList owner)
 {
     this.m_Owner   = owner;
     this.innerList = new List <int>();
 }