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.
如何根据一个属性的值隐藏/显示 WWSD 详细信息的部分?
我已经尝试过:
SectionName.Visibe = true/false
在加载和启动事件中。
我刚试过这个,对我来说效果很好。确保您正在对 DETAIL 的事件而不是部分之一进行编程。
在我的示例中,我使用了以下代码:
If Transaction1Id = 1 Section2.Visible = False Else Section2.Visible = True EndIf
Transaction1Id是交易的一个属性,section2是WorkWithDevices.
Transaction1Id
section2
WorkWithDevices