請問是否有像ComboBox但內容不是文字而是圖片 |
答題得分者是:hagar
|
hans0911
一般會員 發表:7 回覆:2 積分:6 註冊:2002-09-04 發送簡訊給我 |
|
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
1.在 Form1 上拉個 ComboBox1, 其 Style 屬性設為 csOwnerDrawFixed
Items 屬性隨便打入幾個
2.拉 ImageList1, 裏面加入幾個圖
3.然後在 ComboBox1 的 OnDrawItem 事件中, 加入如下的碼:
procedure TForm1.ComboBox1DrawItem(Control: TWinControl; Index: Integer; Rect: TRect; State: TOwnerDrawState); begin ComboBox1.Canvas.FillRect(Rect); ImageList1.Draw(ComboBox1.Canvas,Rect.Left, Rect.Top 2, Index, True); ComboBox1.Canvas.TextOut(Rect.Left 20,Rect.Top,(Control as TComboBox).Items[Index]); end; |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |