在DevExpress.XtraGrid控件中,如何设置行高来调整大文本

In DevExpress.XtraGrid Control ,How to set the height of the row to adjust the big text

column的宽度是固定的,希望Row的高度可以自动调整

PS:
gridView1.OptionsView.RowAutoHeight = 真;不起作用 谢谢

尝试下面 link 中讨论的解决方案。 https://www.devexpress.com/Support/Center/Question/Details/A8/auto-height-of-grid-rows-and-text-wordwrap

根据上面的帮助,我做了一些总结,希望能帮助更多遇到同样问题的人:

1.RepositoryItemMemoEdit Rme = new RepositoryItemMemoEdit(); 
2.Rme.WordWrap = true;
3.ColValue.ColumnEdit = Rme;(ColValue:DevExpress.XtraGrid.Columns.GridColumn)
4.RowAutoHeight = true;