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.
我有一个实体,里面有其他实体。例如,实体 A 具有实体 B 和 C。
因此,当我为 bindindsource 设置数据源时,我想在文本框中显示 ABSomeProperty 的值。有可能有解决方法吗?tks
textBox.DataBindings.Add("Text", bindingSource, "B.SomeProperty");
您必须确保 B 属性不为空。