Completed
Last Updated: 09 Apr 2020 08:53 by ADMIN
Release R2 2020 (LIB 2020.1.413)
Developer at
Created on: 19 Mar 2020 12:24
Category: UI for WinForms
Type: Bug Report
0
RadGridView: selected/current row is enlarged when the AutoSizeRows property is enabled and Windows8 theme is applied

Please refer to the attached gif file.

Workaround:

        private void Form1_Load(object sender, EventArgs e)
        {
            Image currentImage = this.PropertiesGrid.TableElement.CurrentRowHeaderImage;
            this.PropertiesGrid.TableElement.CurrentRowHeaderImage = new Bitmap(currentImage, currentImage.Width - 5, currentImage.Height - 5);
        }

Attached Files:
0 comments