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.
我想在 WPF 页面中创建两个网格。Grid需要滚动条或滚动查看器。另一个Grid是静态的。网格在页面中一个一个放置。如何首先创建和设置滚动Grid?
Grid
<ScrollViewer> <StackPanel> ... </StackPanel> </ScrollViewer>
听起来这个用户只是希望第一个网格滚动,例如:
<StackPanel> <ScrollViewer> <Grid> </Grid> </ScrollViewer> <Grid> </Grid> </StackPanel>