点中dbgrid控件,在对象管理器(Object Inspector)中的Columns行点击“...”按钮,选中你要设置居中的字段----------在这个字段属性栏第一行:Alignment项选择“taCenter”即可。
如果有其他问题,愿意一起讨论。
选中DBGrid里的列在列属性窗口中有设置对齐的方式。默认是左对齐。
最简单的办法,就是在数据表中相关字段的OnGetText中写代码如下:
procedure TForm1.ClientDataSet1dfdfdGetText(Sender: TField; var Text: string;
DisplayText: Boolean);
begin
if Sender.AsInteger = 0 then
Text := '没用完'
else if Sender.AsInteger = 1 then
Text := '已用完'
else Text := '其他';
end;