TdxDBGrid表格中的欄位,符合指定條件讓背景變成指定顏色 |
尚未結案
|
hsienche
一般會員 發表:6 回覆:9 積分:3 註冊:2003-08-28 發送簡訊給我 |
|
supman
尊榮會員 發表:29 回覆:770 積分:924 註冊:2002-04-22 發送簡訊給我 |
您好:
以下是控制,紅色地方是我控制如果Payed欄位大於10的時候會讓他變顏色,您自己改改看吧.
procedure TzManagement.DBGrid1DrawColumnCell(Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState); begin with DBGrid1.Canvas do begin // 先預設顏色 if GDSelected in State then // Select光棒停在此Cell begin Font.Color:=clHighLightText; // 正常的DBGrid顏色 Brush.Color:=$007D3F00; // 正常的DBGrid顏色 end else begin // Select光棒未停在此Cell Font.Color:=clBlack; // 正常的DBGrid顏色 Brush.color:=clWhite; // 正常的DBGrid顏色 end; // 設定指定Cell的顏色 // if DataCol=1 then // 第二個欄位 if (GDSelected in State) then // Select光棒停在此Cell begin if ((Sender as TDBGrid).DataSource.DataSet.FieldByName('Payed').AsInteger>=10) then Brush.Color:=$007D3F00;// 字變紅色加一點白色調(這樣反白效果才會好) end else begin // Select光棒未停在此Cell if ((Sender as TDBGrid).DataSource.DataSet.FieldByName('Payed').AsInteger>=10) then Brush.Color:=$00A4A4FF; // 字變紅色 end; // 一定要執行繪圖的動作 DbGrid1.DefaultDrawColumnCell(Rect,DataCol,Column,[]); end; end;發表人 - supman 於 2005/07/05 17:52:14 |
hsienche
一般會員 發表:6 回覆:9 積分:3 註冊:2003-08-28 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |