我在.NET 3.5(Visual Studio 2008)WinForms应用程序中以只读模式使用DataGridView。
细胞的宽度非常小。一些单元格包含一个短数字。现在,即使使用小字体,有时数字也会以省略号显示。例如“8 ...”而不是“88”。
有没有办法让文本流过标准DataGridView中的下一个单元格并避免省略号?
谢谢!的
答案 0 :(得分:3)
处理DataGridView控件的CellPainting事件。 请检查以下链接:
http://msdn.microsoft.com/en-us/library/hta8z9sz.aspx
请注意,当您自己绘制文本时,需要自定义StringFormat -
引自MSDN代码:
if (e.Value != null)
{
e.Graphics.DrawString((String)e.Value, e.CellStyle.Font,
Brushes.Crimson, e.CellBounds.X + 2,
e.CellBounds.Y + 2, StringFormat.GenericDefault);
}
使用以下StringFormat对象而不是StringFormat.GenericDefault:
StringFormat strFormat = new StringFormat();
strFormat.Trimming = StringTrimming.None;
此致
答案 1 :(得分:3)
在Designer中更改DataGridView属性" RowDefaultCellStyle" - >设置"包裹模式" =" true"
答案 2 :(得分:2)
我发现KD2ND给出的解决方案并不令人满意。完全重新实现细胞绘画以进行如此小的改变似乎很愚蠢 - 处理柱头和绘图的大量工作。选定的行也是。幸运的是,有一个更简洁的解决方案:
// you can also handle the CellPainting event for the grid rather than
// creating a grid subclass as I have done here.
protected override void OnCellPainting(DataGridViewCellPaintingEventArgs e)
{
var isSelected = e.State.HasFlag(DataGridViewElementStates.Selected);
e.Paint(e.ClipBounds, DataGridViewPaintParts.Background
//| DataGridViewPaintParts.Border
//| DataGridViewPaintParts.ContentBackground
//| DataGridViewPaintParts.ContentForeground
| DataGridViewPaintParts.ErrorIcon
| DataGridViewPaintParts.Focus
| DataGridViewPaintParts.SelectionBackground);
using (Brush foreBrush = new SolidBrush(e.CellStyle.ForeColor),
selectedForeBrush = new SolidBrush(e.CellStyle.SelectionForeColor))
{
if (e.Value != null)
{
StringFormat strFormat = new StringFormat();
strFormat.Trimming = StringTrimming.Character;
var brush = isSelected ? selectedForeBrush : foreBrush;
var fs = e.Graphics.MeasureString((string)e.Value, e.CellStyle.Font);
var topPos= e.CellBounds.Top + ((e.CellBounds.Height - fs.Height) / 2);
// I found that the cell text is drawn in the wrong position
// for the first cell in the column header row, hence the 4px
// adjustment
var leftPos= e.CellBounds.X;
if (e.RowIndex == -1 && e.ColumnIndex == 0) leftPos+= 4;
e.Graphics.DrawString((String)e.Value, e.CellStyle.Font,
brush, leftPos, topPos, strFormat);
}
}
e.Paint(e.ClipBounds, DataGridViewPaintParts.Border);
e.Handled = true;
}
诀窍是让现有的`Paint方法处理大部分单元格的绘制。我们只处理绘画文本。边框是在文本之后绘制的,因为我发现否则,文本有时会被涂在边框上,看起来很糟糕。
答案 3 :(得分:1)
不,可能有一些属性可以禁用省略号(如果访问基础控件),但标准DataGridView不支持流过(以及单元格合并)。
答案 4 :(得分:0)
一个可能对您有用的简单技术就是为有问题的单元格打开WrapMode