StringGrid上色 |
答題得分者是:brook
|
zx4654
一般會員 發表:18 回覆:26 積分:8 註冊:2005-04-05 發送簡訊給我 |
|
brook
資深會員 發表:57 回覆:323 積分:371 註冊:2002-07-12 發送簡訊給我 |
[code cpp] void __fastcall TForm1::StringGrid1DrawCell(TObject *Sender, int ACol, int ARow, TRect &Rect, TGridDrawState State) { if (ACol == StringGrid1->Col && ARow == StringGrid1->Row) { StringGrid1->Canvas->Brush->Color = clRed; StringGrid1->Canvas->FillRect( Rect ); StringGrid1->Canvas->TextOut( Rect.Left 2, Rect.Top 2, StringGrid1->Cells[ACol][ARow]); } } [/code] 1.以上是Cells填上顏色的範例,StringGrid的OnDrawCell. 2.至於要在哪個Cells自己去設個值取代StringGrid1->Col和StringGrid1->Row. |
zx4654
一般會員 發表:18 回覆:26 積分:8 註冊:2005-04-05 發送簡訊給我 |
===================引 用 brook 文 章=================== [code cpp] void __fastcall TForm1::StringGrid1DrawCell(TObject *Sender, int ACol, int ARow, TRect &Rect, TGridDrawState State) { if (ACol == StringGrid1->Col && ARow == StringGrid1->Row) { StringGrid1->Canvas->Brush->Color = clRed; StringGrid1->Canvas->FillRect( Rect ); StringGrid1->Canvas->TextOut( Rect.Left 2, Rect.Top 2, StringGrid1->Cells[ACol][ARow]); } } [/code] StringGrid1->Canvas->TextOut( Rect.Left 2, Rect.Top 2, StringGrid1->Cells[ACol][ARow]); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 可以請問這裡是什麼意思嗎?(Rect.Left是什麼,為什麼+2) 非常感謝你的指導! |
brook
資深會員 發表:57 回覆:323 積分:371 註冊:2002-07-12 發送簡訊給我 |
StringGrid1->Canvas->TextOut( Rect.Left 2, Rect.Top 2, StringGrid1->Cells[ACol][ARow]);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 可以請問這裡是什麼意思嗎?(Rect.Left是什麼,為什麼+2) 1.Rect表示該Cells的位置區域範圍. 2. 2只是要字左邊空2點,上面空2點,可能看起來比較放在中間而己,至於怎樣會比較好看,則需考慮字高和字寛以及Rect的區域. |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |