c# – RightToLeft DatagridviewCell
作者:互联网
如何将属性RightToLeft发送到DatagridviewCell?我试着设定
Alignement属性为“MiddleRight”但是因为我的DatagridviewCell值是
阿拉伯语和英语不会从右到左显示为我想要的.
解决方法:
我找到了一个Cell_Painting事件的解决方案,它的工作原理.这是代码:
private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
if (e.ColumnIndex == 2 && e.RowIndex >= 0)
{
e.PaintBackground(e.CellBounds, true);
TextRenderer.DrawText(e.Graphics, e.FormattedValue.ToString(), e.CellStyle.Font, e.CellBounds, e.CellStyle.ForeColor, TextFormatFlags.RightToLeft | TextFormatFlags.Right);
e.Handled = true;
}
}
标签:c,right-to-left,datagridviewtextboxcell 来源: https://codeday.me/bug/20190623/1275200.html