Exemple #1
0
        void _taskGrid_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
        {
            if (e.RowIndex < 0)
            {
                return;
            }

            if (e.ColumnIndex == _taskGridInfo.FileNameColIdx)
            {
                WinUtil.PaintFileNameCell(e);
            }
        }