📌  相关文章
📜  powerapps 突出显示库中的选定项目 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:02.444000             🧑  作者: Mango

代码示例1
In TemplateFill Property of Gallery, use ThisItem.IsSelected to change the color.

If(
    ThisItem.IsSelected,
    White,
    LightGray
)