随笔分类 -  Delphi学习掌握的基本控件属性

主要是常用控件的属性,便于程序的美观,防止忘记!
摘要:procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer; Rect: TRect; State: TGridDrawState); var dx: Integer; begin with (Sender as TStringGrid) do begin //要制定单元格可以在这里进行判断 if (ACol = 0) or (ARow = 0) then Canvas.Brush.Color := clBtnFace else begin case ACol of 1: Canv... 阅读全文
posted @ 2012-04-20 14:09 Roube 阅读(378) 评论(0) 推荐(0)