what the recommended control to implement table using winform? - winforms

Like to display the data to the table. What is the appropriate control in the winform to use?

DataGridView

Related

What is the best way to make a wizard using native WPF controls

I'm new to WPF and never happened the need for me to create a wizard in WPF. I want to know what control to use to make a simple wizard in WPF that I can collect information on each page and finalize an operation in the last page(step). I actually want to make it using native WPF controls. I don't know, like using page navigations or so. Any native wpf ideas?
You can make use of Tab Control for making a wizard.
For moving to the next screen on a particular index can bind the SelectedIndex property of the tab control to a property in the view model and if you do not wish to display the tab items in UI can set its height to 0.
Check out the WPF Extended toolkit. It has a built in Wizard control.
Wizard

What design pattern can be used for this scenario?

I am developing a WPF application, The below two being the major modules
The data is obtained from a service and there would be frequent updates after the initial startup.
The grid controls which display the data has to be dynamically created based on a configuration.
Which design pattern would best suit this problem. MVVM pattern does not fit here.
Any suggestions?
Thanks,
using this solution
WPF MvvM DataGrid Dynamic Columns
you can create the columns in your VM and have MVVM bind to both the column definitions and the data for the datagrid.
This is assuming that you need a lot of control over your columns and not just have the datagrid auto generate them from your itemssource binding

Best way to perform an ajax auto complete search box in WPF?

I have been trying to do this with the AutoCompleteBox tool in the WPF Tool Kit. What event would best be used if I wanted to display information from a database based on what the user enters?
Try handling the Populating event as per the following:
WPF: AutoComplete TextBox, ...again

How To Create a Custom List of ProgressBars in .Net 2.0

I have created a progress bar custom control and would like to embed this into a list which can be sorted and placed on a windows form using .Net 2.0.
What is the best approach for this?
Is it possible to just add it to a ListView as a subitem? Is there a better way to achieve this? I want it to be as lightweight as possible.
Not a ListView but here is an unsupported progress bar cell/column sample based on DataGridViewImageCell class.

Cross tab data control for winform.net 2.0

Could anyone suggest me any winforms controls for showing cross tab data in .net?
Updates:
1. The control should be editable
2. Binding support will be add-on feature.
If you only need a read-only display of the data, it might be easiest to use the ReportViewer control with a Matrix.

Resources