Put Label(s) on datagrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to put a label (or more labels) to datagrid on any position and when datagrid is moved also label is moved with it.
 
Hi,

I would say no since DataGrid is not a container.
You could handle it manually by implementing DataGrid.Move method and move
label accordingly.

--
Miha Markic [MVP C#] - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

Matkov said:
Is it possible to put a label (or more labels) to datagrid on any position
and when datagrid is moved also label is moved with it.
 
* =?Utf-8?B?TWF0a292?= said:
Is it possible to put a label (or more labels) to datagrid on any
position and when datagrid is moved also label is moved with it.

Why not put the label into a cell?
 
Back
Top