The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hello everyone ,
i'm trying to add and icon image on the column's header of a datagrid .
does anybody know how to do it ?
do i have to override onPaint
how i get the column's header height ?
thanks in advance
Hi,
plz try this
make an imageilst with "Imagelist1" on design time and add some images to this list.
then try the following code on form load
gridcontrol1(0,1).imagelist = "Imagelist1"
gridcontrol1(0,1).imageindex = 1
actually column header behave as the zeroth row of the grid so u can handle the height of the grid col header as
''''following line of code will set the col header
''''height equal to 25
gridcontrol1.rowheight(0) = 25
>
> Hello everyone ,
>
>i''m trying to add and icon image on the column''s header of a datagrid .
>
>does anybody know how to do it ?
>do i have to override onPaint
>
>how i get the column''s header height ?
>
>thanks in advance
>
>