Exemple #1
0
        private void ClearSelectIcon()
        {
            if (m_CurSelectComponent != null)
            {
                m_CurSelectComponent.DefaultColoring();
            }

            m_CurSelectIndex     = -1;
            m_CurSelectItem      = null;
            m_CurSelectComponent = null;
        }
Exemple #2
0
        public void OnDoubleClickCupItem(int _nIndex, ListViewItem _itemComponent)
        {
            UListComponentLegendCup legendCup = _itemComponent as UListComponentLegendCup;

            ViewLegendCupDetail(legendCup.LLegendCupID);
        }
Exemple #3
0
 public void OnSelectCupItem(int index, ListViewItem item)
 {
     m_CurSelectIndex     = index;
     m_CurSelectItem      = LegendCupList.DataSource[index];
     m_CurSelectComponent = item as UListComponentLegendCup;
 }