本文介绍了如何在DataGridView中触发ComboBoxColumn的事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们在窗口中触发ComboBox的事件基于:

We fire Event of ComboBox in window Based :

private void cmbItems_SelectedIndexChanged(object sender, EventArgs e)
{

}



同样我想在


Similarly I want to fire Event of ComboBox in

DataGridView



请帮忙。



如果使用下面的事件,请不要正常工作。


Please help.

As the Event below used, do not work properly.

private void dataGridView2_CellContentClick(object sender,DataGridViewCellEventArgs e)
{

}

推荐答案


这篇关于如何在DataGridView中触发ComboBoxColumn的事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 22:14