Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はdataGridView多くの列と行を持っています。
dataGridView
columnここで、first (テキスト)のコンテンツをのコンテンツにバインドしたいと思いますcomboBox。
column
comboBox
これどうやってするの?
コンボボックスのデータソースは次のように設定できます。
private void BindComboBox() { comboBox1.DataSource = dataGridView.DataSource; comboBox1.DisplayMember = "The column Name you want to bind"; }