Hi guys :
How can draw color in List View Column Header Non Client Area ?
please check the attached image
ThanksAttachment 142783
Printable View
Hi guys :
How can draw color in List View Column Header Non Client Area ?
please check the attached image
ThanksAttachment 142783
have any one :)
I don't understand exactly what you need, but you may try this code which put a Label beside the last column, set the label's backcolor to show desired color.
Code:Private Sub ListView1_ColumnWidthChanging(sender As Object, e As ColumnWidthChangingEventArgs) Handles ListView1.ColumnWidthChanging
Label1.BringToFront()
Dim intLeft As Integer = 0
For Each col As ColumnHeader In ListView1.Columns
intLeft += col.Width
Next
Label1.Left = intLeft + 16
Label1.Top = ListView1.Top + 8
End Sub