Пример #1
0
        private void StatisticsItem_MouseEnter(object sender, EventArgs e)
        {
            if (HighlightOnMouseOver && !itemIsSelected && !itemIsALine)
            {
                this.BackColor = COLOR_HIGHLIGHT;
            }

            if (statisticToDisplay.HasSubStatistics())
            {
                this.Cursor = Cursors.Hand;
            }

            if (extendedPanel != null)
            {
                extendedPanel.Show();
            }
        }