Click here to Skip to main content
Click here to Skip to main content

LinkLabel DataGrid Column

By , 20 Oct 2005
 

Introduction

I needed to include a DataGrid column with a click-able cell. I found no valid solutions on the net (except some sold control packages and some tricks like mousedown and mousemove/hit-test on the grid) and I saw that many were asking for it... I decided to write it on my own. It's very simple and basic but it works very well.

This is what I needed and this is what I wrote, you may want to adapt it to your needs.

Missing you-may-need-them things (add them yourself)

  • Font change on the grid.
  • Right to left implementation.
  • Visited links.
  • Underline with no mouse on it (I needed the underline to appear when the mouse moves over the link text).
  • Custom colorization for the link.

How it looks

Normal grid Cursor in cell Cursor on link Cursor on link
(row selected)

How it works

The control overrides some DataGridColumnStyle methods (as you have to do when you write a custom ColumnStyle). When the control is initialized (in its constructor) a generic LinkLabel (this will be the main component that reacts to the clicks) is initialized with its standard size. When the TableStyle is bound to a DataGrid the control binds to some events.

  • MouseMove - Used to show/hide the control when the user moves the cursor on the grid.
  • DataSourceChanged - Used to hide the control (if visible) when the Datagrid.Datasource changes.
  • BindingContextChanged - Used to hide the control (if visible) when the grid binding to data source changes.
  • PositionChanged (DataBinding) - Used to hide the control (if visible) when the position of the binding in the datasource changes. (IE: you click the link and the DataGrid.Datasource is loaded with different data).

Overridden methods

  • Editing: Abort, Commit, Edit
  • Painting: Paint (with overloads)
  • Cell size: GetMinimumHeight, GetPreferredHeight, GetPreferredSize
  • Handling: SetDataGridInColumn, ConcedeFocus

How to use it

(Code used to take the pictures above)

Private Sub SetGridStyle()
    Dim grdStyle As New DataGridTableStyle

    'Other columns...

    Dim grdStileColEqv As New DataGridColumns.LinkLabel
    grdStileColEqv.MappingName = "Equivalenti"
    grdStileColEqv.HeaderText = "Eqv."
    grdStileColEqv.Alignment = HorizontalAlignment.Center
    grdStileColEqv.NullText = ""
    grdStileColEqv.Width = 40
    AddHandler grdStileColEqv.LinkClicked, AddressOf LinkClicked
    grdStyle.GridColumnStyles.Add(grdStileColEqv)

    grdLista.TableStyles.Add(grdListaStyle)
End Sub

Private Sub LinkClicked(ByVal sender As Object, _
            ByVal e As LinkLabelLinkClickedEventArgs)
    'Click handler code goes here.
    'if you need to access data of the row clicked
    '(for example to open a browser with the clicked url)
    'DirectCast(e.Link.LinkData, DataRowView)
    'contains the whole clicked row.
End Sub

Comments

I hope you'll find this code useful. If you want to contribute fixing bugs and/or adding functions, let me know. I'll modify the code accordingly.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)

About the Author

Lino Barreca
Software Developer (Senior)
Italy Italy
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalproblemmemberjose angelo santos14 Jan '09 - 1:15 
Generalthanksmemberbrigno12 Jan '07 - 8:47 
Questionhelp Plsmemberlionvnit29 Oct '06 - 22:34 
AnswerRe: help PlsmemberLino Barreca29 Oct '06 - 23:40 
GeneralRe: help Plsmemberlionvnit30 Oct '06 - 0:12 
QuestionUnnecessarily Complicated?memberJay M Miller12 Apr '06 - 16:16 
AnswerRe: Unnecessarily Complicated?memberLino Barreca12 Apr '06 - 21:40 
AnswerRe: Unnecessarily Complicated?memberimadulhaq25 May '06 - 7:53 
GeneralRe: Unnecessarily Complicated?memberimadulhaq25 May '06 - 7:54 
QuestionHow to incorporate your file into a projectmembersoloflexx19 Jan '06 - 8:10 
GeneralClick Event Handlermemberjunoface13 Dec '05 - 4:45 
GeneralRe: Click Event HandlermemberLino Barreca13 Dec '05 - 22:01 
GeneralRe: Click Event Handlermemberjunoface14 Dec '05 - 1:17 
GeneralVery very nice, but some problemsmemberDesma30 Nov '05 - 21:52 
GeneralRe: Very very nice, but some problemsmemberLino Barreca30 Nov '05 - 22:18 
GeneralVery useful!!memberPazzoDiTe21 Oct '05 - 12:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 21 Oct 2005
Article Copyright 2005 by Lino Barreca
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid