如何将TDecisionGrid中的‘SUM’等转换成相应的汉字!(0分)

  • 主题发起人 主题发起人 datoncg
  • 开始时间 开始时间
procedure TForm1.DecisionGrid1DecisionDrawCell(Sender: TObject;
Col,
Row: Integer;
var Value: String;
var aFont: TFont;
var aColor: TColor;
AState: TGridDrawState;
aDrawState: TDecisionDrawState);
begin
If Value='Sum' then
Value:= '小计';
end;
 
接受答案了.
 
后退
顶部