IntroductionThis article will describe the DataGrid in Edit mode while the edit cell requires a list of data. We are going to achieve that using the ComboBox.Crating WPF Application ProjectFire up Visual Studio 2008 and Create a WPF Application and name the project as DatePickerDGWPF.Here is the basic idea of our sample application; we would have sample data with one property that can be selected from a list of values displayed in ComboBox.When the particular cell will be edit mode, we would be able to select from the list displayed in the ComboBox.So let's have a class and have sample data.Now we will add a DataGrid to the Window and design the Columns inside of it.We need to set the ItemSource Property; for that I have created a Class that would generate the list and in XAML I have accessed it and assigned it. The following figures will clarify what I have done:......It seems we are done with the design of our DataGrid columns. Run the application and try to edit the column "Status", you would get ComboBox control to handle the Status List.And when in Edit mode:After Updating:Hope this article helps.
ComboBox in DataGrid in WPF
DatePicker in DataGrid in WPF
Thanx a lot buddy for this solution... :)
I'm trying to do it the same but binding with ListBox or ComboBox, but I can't. I need some Template? maybe i lost in the XAML.
thanks a lot for your solutions.
I read through the posts on codeplex but wasn't able to figure out what the final code should be for the auto-edit. Any chance you could post it? It would be much appreciated.
favorite it!