如何获取当前绑定到控件的绑定源的名称

How to get the name of bindingsource which is currently binding to a control

我有一个文本框,我将绑定源作为数据绑定添加到其中,然后我想获取绑定源的名称,在下面的示例中,绑定源名称是 "bindingSource1"。如何实现这一目标?因为我有很多绑定源,有时我更改了文本框的数据绑定,所以我需要检查当前绑定到它的绑定源的名称。谢谢。

textBox1.DataBindings.Add("Text", bindingSource1, "Address", True)

谢谢大家,因为你们的评论,我终于知道了如何实现我的目标,这就是我需要做的:

如果textBox1.DataBindings(0).DataSource是bindingSource1那么

'做作业

如果

结束