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.
我有一个 GroupBox 里面有一个 DockPanel,它包含两个列表视图。有 2 个按钮,在每个按钮上单击一个列表视图将可见,其他将折叠。但是列表视图不会调整宽度以使其适合组合框。
如何使列表视图适合组框?
将 ListView 宽度设为“Auto”和 HorizontalAligment =“Strech”...希望这能解决您的问题
在添加控件之前清除停靠面板。
即点击按钮清除面板使用dockPanel.Children.Clear(); 并使用 dockPanel.Children.Add( control ) 添加新项目;