在TSTRINGGRID中HINT的显示控制问题 |
答題得分者是:hagar
|
cxg
中階會員 發表:116 回覆:192 積分:76 註冊:2004-02-12 發送簡訊給我 |
|
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
參考這篇試試 "show the text of a cell from a stringgrid as hint":
http://www.swissdelphicenter.ch/torry/showcode.php?id=1798
var LastRow, LastCol : Integer; //Cell Hint anzeigen procedure TForm1.ShowCellHint(X,Y:Integer); var ACol, ARow : Integer; begin //ShowHint auf True setzen If StringGrid.ShowHint = False Then StringGrid.ShowHint := True; //Col und Row Position lesen StringGrid.MouseToCell(X, Y, ACol, ARow); //wenn im gultigen Bereich zeige Zelleninhalt als Hint If (ACol <> -1) And (ARow <> -1) Then StringGrid.Hint:=StringGrid.Cells[ACol,ARow]; If (ACol<>LastCol) or (ARow<>LastRow) Then begin Application.CancelHint; LastCol:=ACol; LastRow:=ARow; end; end; //Example, im MouseMove Ereignis aufrufen procedure TForm1.StringGridMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin ShowCellHint(X,Y); end;-- hagar. |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |