Пример #1
0
        private void label1_MouseLeave(object sender, EventArgs e)
        {
            BackColor = Color.White;
            Refresh();
            List <ListCell> lcList = cm.findNeighborCell(this);

            foreach (ListCell lc in lcList)
            {
                if (lc != null)
                {
                    lc.handle_Mouse("MouseLeave");
                }
            }
        }