Devexpress GridControl无限高度惹得祸

Posted stonewl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Devexpress GridControl无限高度惹得祸相关的知识,希望对你有一定的参考价值。

异常提示:

issue, place the grid into a container that will give a finite height to the grid, or manually specify the grid‘s Height or MaxHeight. Note that you can also avoid this exception by setting the GridControl.AllowInfiniteGridSize static property to True, but in that case, the grid will run slowly.”

发生场景:Grid布局中加了GridControl后出现

发生原因:网络指点,GridControl如果无限高度的话,由于grid需要渲染,因此没有高度的grid系统dev认为无法完成,因为会耗尽宽带,直接不处理。

症状:页面加载失败,无法显示,

处理意见:grid设置固定高度,或者装载grid的容器设置固定高度。

<Grid Grid.Column="1">
<Grid.RowDefinitions>
<RowDefinition Height="5*"/>
<RowDefinition Height="95*"/> 原本:height=auto
</Grid.RowDefinitions>
</Grid>

 






以上是关于Devexpress GridControl无限高度惹得祸的主要内容,如果未能解决你的问题,请参考以下文章

DevExpress之GridControl控件小知识

Devexpress GridControl 设置combobox下拉框

[DevExpress]GridControl分页的实现

DevExpress GridControl

如何在GridControl中显示图片列?控件DevExpress.XtraGrid.GridControl中显示图片列。

[DevExpress] GridControl添加右键菜单