0

Is there any site available where I can find free WPF controls like Griview ? I am currently working on a complex project where I need a customizable WPF Gridview like telerik

akjoshi
  • 15,374
  • 13
  • 103
  • 121
Ulhas Tuscano
  • 5,502
  • 14
  • 58
  • 89

3 Answers3

2

You can use controls from the WPF Toolkit as well as Extended WPF Toolkit.

Matthieu
  • 4,605
  • 4
  • 40
  • 60
Mamta D
  • 6,310
  • 3
  • 27
  • 41
0

On codeplex.com and codeproject.com. However the best always cost money.

Jehof
  • 34,674
  • 10
  • 123
  • 155
Danny Varod
  • 17,324
  • 5
  • 69
  • 111
0

Have a look at the controls in AvalonControlsLibrary on code plex, it is having a DataGridView control apart from other controls. -

http://avaloncontrolslib.codeplex.com/wikipage?title=Home&ProjectName=avaloncontrolslib

DataGridView

DataGridView is a maybe a misleading name for this control. This control is far from being the same as the WinForms DataGridView (maybe someday it will J). Basically this control is a WPF ListView control but it is capable of auto generate the GridViewColumns for you. It generates the columns by looking at the objects’ properties. You can also specify how you generate the columns by decorating your properties with a custom attribute. For more information have a look at this post. http://marlongrech.wordpress.com/2007/09/01/listview-with-auto-generation-of-column-enable-disable-columns/

Similar SF question - Where can I find free WPF controls and control templates?

Community
  • 1
  • 1
akjoshi
  • 15,374
  • 13
  • 103
  • 121