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.
我有一个看起来像这样的 BrowserGallery:
我不知道如何创建一个集合,其中包含来自所有 TextInput 的所有值以及来自按钮单击的所有亲戚标题(屏幕截图中的粗体字)我需要这样的集合:
等等..
我现在拥有的是这样的:
ClearCollect(ThisBudget; {item: BrowseGallery1.AllItems.item; budget: BrowseGallery1.AllItems.TextInput1})
但没有给我想要的结果..
试试这个:
ClearCollect(mycollection,ForAll(Gallery1.AllItems,{item:Heading,budget:Body}))
用您的图库控件替换标题和正文。