如何将属性RightToLeft插入到DatagridviewCell?我试图设定

Alignment属性为“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# - RightToLeft DatagridviewCell,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28959661/

10-12 13:19