如何将 BrowserGallery 中的所有 TextInput 值放入 PowerApps 中的 Collection?

How to put all the TextInput value from a BrowserGallery into a Collection in PowerApps?

我有一个如下所示的 BrowserGallery:

我不知道如何使用所有 TextInput 的所有值和按钮单击的所有相关标题(屏幕截图中的粗体文字)创建 collection 我需要一个 collection 像这样:

等等..

我现在拥有的是:

ClearCollect(ThisBudget; {item: BrowseGallery1.AllItems.item; budget: BrowseGallery1.AllItems.TextInput1})

但没有给我想要的结果..

试试这个:

ClearCollect(mycollection,ForAll(Gallery1.AllItems,{item:Heading,budget:Body}))

将标题和 Body 替换为您的库控件。