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.
我想在 LongListSelector 中禁用 VirtualizingStackPanel。我试试这个:
VirtualizingStackPanel.IsVirtualizing="False"
但不起作用(应用程序崩溃)...
谢谢
是只读属性。
利用
<ListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel> </StackPanel> </ItemsPanelTemplate> </ListBox.ItemsPanel>