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.
具有可见性的元素是否Collapsed会在不显示时降低性能?
Collapsed
我说的是大件(200 件)DataGrids放在后面。
DataGrids
PD。我还没有建立DataGrid,我没有实际的数据。抱歉,如果这个问题不是很有效,我自己想不出一个合适的测试方式。
DataGrid
可见性设置为折叠的项目仍然是布局阶段的一部分,因此如果您有许多折叠项目,则会对性能产生(非常小的)影响。他们的容器仍然需要检查以确保他们不可见或隐藏,所以他们会在树上行走。
话虽如此,影响非常小,而且很少是真正性能问题的罪魁祸首。
如果它们没有折叠(即可见),它们对性能的影响约为 20%。