Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / Visual Basic
Article

Custom Data Grid with Field Chooser functionality

Rate me:
Please Sign up or sign in to vote.
3.37/5 (19 votes)
1 Jan 20031 min read 148.7K   824   44   12
A datagrid control with field chooser context menu

Custom Data Grid with all fields from product table

Figure - Custom Data Grid with all fields from product table

 Field chooser dialog

Figure - Field chooser dialog

Custom Data Grid without ProductId filed

Figure - Custom Data Grid without ProductId field

Product Name back Color changed

Figure - Product Name back Color changed

Introduction

This custom data grid allows the user to select the columns to be displayed, change the columns order as needed at runtime. This grid will display a Field Chooser context menu when you click on the column header row which when selected will display a Field Chooser dialog box where the user can choose, exclude and re-arrange the grid columns. User may also wish to change the back color of a column.

Background

I had to develop a custom data grid for a project where the user should have an option to choose the columns to be displayed and change the order of the columns as needed (just like outlook, although it was done using a list view). So, I thought it would be a good idea to extend the basic data grid and add some functionality to it.

I am sure that there would be a better way to implement this feature and would like any comments or suggestions on this.

Using the code

In this example, the CustomGrid displays the Product Table contents from the Northwind database. I used DataTable as a DataSource to the grid. You may wish to use any other source such as DataSet or DataView but you need to make changes to the grid control code.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionWPF Column Chooser Pin
Member 432946923-Dec-11 3:50
Member 432946923-Dec-11 3:50 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.