Windows Forms: How to fill ComboBox and DataGridView automatically in C#
By FoxLearn 7/26/2017 9:13:29 PM 6.78K
How to fill ComboBox and DataGridView automatically in C#
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "DataGridViewAndCombobox" and then click OK
Step 2: Design your form as below
Step 3: Create an Entity Framework Model, then select Category and Product table from Northwind database
Step 4: Add code to handle your form as below
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace DataGridViewAndCombobox { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { try { //Init data using (NorthwindEntities db = new NorthwindEntities()) { db.Configuration.ProxyCreationEnabled = false; cboCategory.DataSource = db.Categories.ToList(); cboCategory.ValueMember = "CategoryID"; cboCategory.DisplayMember = "CategoryName"; } } catch (Exception ex) { MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void cboCategory_SelectionChangeCommitted(object sender, EventArgs e) { Category obj = cboCategory.SelectedItem as Category; if(obj != null) { Cursor.Current = Cursors.WaitCursor; try { using (NorthwindEntities db = new NorthwindEntities()) { //Using linq to query data db.Configuration.ProxyCreationEnabled = false; var query = from o in db.Products where o.CategoryID == obj.CategoryID select o; dataGridView.DataSource = query.ToList(); } } catch(Exception ex) { MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); } Cursor.Current = Cursors.Default; } } } }
VIDEO TUTORIALS
- How to save files using SaveFileDialog in C#
- How to make an Alarm clock with sound in C#
- How to Display Images in DataGridView in C#
- How to Print DataGridView with Header & Footer with Landscape in C#
- How to Create a custom Progress Bar with Percentage in C#
- How to read an image file in C#
- How to use BackgroundWorker in C#
- How to protect .NET code from reverse engineering
Categories
Popular Posts
Flat Able Admin Dashboard Template
11/18/2024
Regal Admin Dashboard Template
11/18/2024
Plus Admin Dashboard Template
11/18/2024
Admin Tailwind CSS Admin Dashboard Template
11/18/2024