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 中的 wrappanel 控件。由于没有滚动条,我的一些控件在宽度方面被切断了。
在这种情况下,ScrollViewer 将对您有所帮助。否则,您将需要使用 ScrollBar 控件并手动控制可见的内容。
滚动查看器的使用示例:
<DockPanel> <ScrollViewer VerticalScrollBarVisibility="Auto"> <StackPanel /> </ScrollViewer > </DockPanel>