免费视频淫片aa毛片_日韩高清在线亚洲专区vr_日韩大片免费观看视频播放_亚洲欧美国产精品完整版

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
combobox 自繪
代碼文件:
unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls, ImgList, ComCtrls;type  TForm1 = class(TForm)    ComboBox1: TComboBox;    ImageList1: TImageList;    procedure FormCreate(Sender: TObject);    procedure ComboBox1DrawItem(Control: TWinControl; Index: Integer;      Rect: TRect; State: TOwnerDrawState);    procedure FormDestroy(Sender: TObject);  end;var  Form1: TForm1;implementation{$R *.dfm}var  Bits: array[0..3] of TBitmap;procedure TForm1.FormCreate(Sender: TObject);var  i: Integer;begin  for i := 0 to Length(Bits)-1 do  begin    Bits[i] := TBitmap.Create;    ImageList1.GetBitmap(i, Bits[i]);    ComboBox1.Items.Add(Format('Item %d', [i]));  end;  ComboBox1.Style := csOwnerDrawVariable;  ComboBox1.ItemHeight := Bits[0].Height + 4;  ComboBox1.ItemIndex := 0;end;procedure TForm1.ComboBox1DrawItem(Control: TWinControl; Index: Integer;  Rect: TRect; State: TOwnerDrawState);begin  ComboBox1.Canvas.FillRect(Rect);  ComboBox1.Canvas.BrushCopy(Bounds(Rect.Left+2, Rect.Top+2, Bits[Index].Width, Bits[Index].Height),                              Bits[Index],                             Bounds(0, 0, Bits[Index].Width, Bits[Index].Height),                             clBlack);  ComboBox1.Canvas.TextOut(Rect.Left + 24, Rect.Top + 3, ComboBox1.Items[Index]);end;procedure TForm1.FormDestroy(Sender: TObject);var  i: Integer;begin  for i := 0 to Length(Bits)-1 do    Bits[i].Free;end;end.
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
如何在 TDrawGrid 的單元格中顯示圖片
Delphi中在ComboBox中添加數(shù)據(jù)庫(kù)中字段
ComboBox實(shí)現(xiàn)顯示文本與值不同的方法
Delphi的圖形處理(一)
Delphi在combobox下拉框里顯示圖片,Delphi/Pascal代碼片段分享,
delphi實(shí)現(xiàn)屏幕截圖
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服