如何调整所有行的大小以均匀地填充 DataGrid 的所有高度?
我有一个遵循 MVVM 模式的 WPF 应用程序。该视图包含 DataGrid(来自 WPF Toolkit),它显示一些信息并支持分页。我希望行数取决于 DataGrid 的大小。我怎样才能做到这一点?
I have a WPF application that follows the MVVM pattern. The View contains DataGrid (from WPF Toolkit) that displays some information and supports paging. I want the rows number to depend on the DataGrid's size. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RenderSize 是大小。 http://msdn.microsoft.com/enus/library/system .windows.uielement.rendersize.aspx
根据数据网格大小和行大小,您应该能够计算出单个屏幕上可以容纳多少行。
RenderSize is size. http://msdn.microsoft.com/enus/library/system.windows.uielement.rendersize.aspx
From datagrid size and row size you should be able to calculate how many row can fit on a single screen.