数据源内容更改时刷新DataGridViewComboBoxCell的内容

时间:2018-08-02 17:57:27

标签: c# .net winforms

我已将数据源分配给firebaseApp.auth().getRedirectResult().then(function(userCredential) { // True if the user is new, false if existing. console.log(userCredential.additionalUserInfo.isNewUser); }).catch(function(error) { // Error occurred. }); ,它是DataGridViewComboBoxCell。当列表更改时,我想通知所有单元格它们也应该自行更新。

这是我要解决的状态:

enter image description here

该怎么做?我尝试重新分配相同的数据源,但这没有帮助。

如果我不更新数据源,不仅新值不会出现在组合框上,单元格还将拒绝以前未知的值并导致错误:

enter image description here

例如,如果将List<string>添加到数据源,则会以编程方式将其设置为单元格的值:

"Hello world"

0 个答案:

没有答案