WinForms ComboBox data binding gotcha WinForms combobox data binding gotcha WinForms ComboBox data binding gotcha WinForms ComboBox data binding gotcha WinForms ComboBox data binding gotcha WinForms ComboBox data binding gotcha WinForms ComboBox data binding gotcha gotcha
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
private BindingSource source1 = new BindingSource();
private BindingSource source2 = new BindingSource();
public Form1()
{
InitializeComponent();
Load += new EventHandler(Form1Load);
}
void Form1Load(object sender, EventArgs e)
{
List<string> myitems = new List<string>
{
"Item 1",
"Item 2",
"Item 3"
};
ComboBox box = new ComboBox();
box.Bounds = new Rectangle(10, 10, 100, 50);
source1.DataSource = myitems;
box.DataSource = source1;
ComboBox box2 = new ComboBox();
box2.Bounds = new Rectangle(10, 80, 100, 50);
source2.DataSource = myitems;
box2.DataSource = source2;
Controls.Add(box);
Controls.Add(box2);
}
}
}
Tags: c# data-binding winforms
Source: By Darren Kopp as answer to the question
This code snippet was collected from stackoverflow, and is licensed under CC BY-SA 4.0
Related code-snippets:
- How do you convert decimal in C#?
- How do you calculate someone's age based on datetime?
- How can I calculate relative time using a C# language?
- If a query result set is filled in LINQ with data then fill the data set or the table with data. This example is just that.
- How do I get a distinct, ordered list of names from a data table using LINQ?
- Decoding T-SQL CAST in C#/VB.NET.
- Do you like compression of files? How do you decompress them?
- How can I print an HTML document from a web service?
- What is the catch all algorithm?
- How do you sort a dictionary by value?
- What is the difference between Int and Integer in Java and C#?
- How to change version number on iOS?
- How can I create an object instance from a Type?
- How do I express the left join with aggregate SQL as LINQ query?
- What is the best way to use a database in c#?