コードを見る前に、レンダリングを添付します。
早速、コードを載せておきます。
ユニット Unit1;インターフェイスは Windows、メッセージ、SysUtils、バリアント、クラス、グラフィックス、コントロール、フォーム、ダイアログ、StdCtrls、ComCtrls、ImgList を使用;typeTForm1 = class(TForm)btn1: TButton;lv1: TListView;trckbr1: TTrackBar;il1: TImageList;プロシージャlv1CustomDraw(送信者: TCustomListView; const ARect: TRect; var DefaultDraw: Boolean); プロシージャ lv1CustomDrawItem(Sender: TCustomListView; 状態: TCustomDrawState; var DefaultDraw: Boolean); TObject);privatefunction ReDrawItem(HwndLV: HWND; ItemIndex: integer): boolean;{ プライベート宣言 }public{ パブリック宣言 }end;varForm1: TForm1;implementationusesCommCtrl;{$R *.dfm}//描画ステータス バー プロシージャ DrawSubItem(LV : TListView; 項目: TListItem; Prosition: Single; Style: Integer; IsShowProgress: Boolean; DrawColor: TColor = $00005B00; FrameColor: TColor = $00002F00);//SubItem の領域関数を取得します GetItemRect(hWndLV: HWnd; iItem, iSubItem: Integer) TRect ;varRect: TRect;beginListView_GetSubItemRect(hWndLV, iItem, iSubItem, iSubItem, @Rect);Result := Rect;end;varPaintRect, R: TRect;i, iWidth, x, y: Integer;S: string;beginwith lv dobeginPaintRect := GetItemRect( lv.ハンドル、アイテム.インデックス、 SubItem);R := PaintRect;if Prosition >= Max thenProsition := 100elsebeginif Prosition <= 0 thenProsition := 0elseProsition := Round((Prosition / MAX) * 100);end;if (Prosition = 0) および (IsShowProgress ではない) ) thenCanvas.FillRect(r) //0の場合, 空白を直接表示します elsebegin//まず背景を塗りつぶします Canvas.FillRect(r);Canvas.Brush.Color:= Color;//外枠を描画しますInflateRect(R, -2, -2);Canvas.Brush.Color: = FrameColor;Canvas.FrameRect(R);Canvas.Brush.Color := Color;InflateRect(R, -1, -1);//InflateRect(R,-1,-1);//パーセンテージに基づいて進行状況バーのコンテンツ概要を計算します。 iWidth := R.Right - Round((R.Right - R.Left) * ( ( 100 - Prosition) / 100));case Style of0: //Solid beginCanvas.Brush.Color := DrawColor;R.Right := iWidth;Canvas.FillRect(R);end;1: //縦線塗りつぶし begini := r.Left;while i < iWidth dobeginCanvas.Pen.Color := Color;Canvas.MoveTo(i, R.Top);Canvas .Pen.Color := DrawColor;Canvas.LineTo(i, R.Bottom);Inc(i, 3);end;end;end; end//進行状況バーを描画したら、あとは進行状況番号を表示するだけです。 Canvas.Brush.Style := bsClear;if Prosition = Round(Prosition) thenS := Format('%d%%', [Round(Prosition) )])elseS := FormatFloat('#0.0', Prosition);with PaintRect dobeginx := Left + (Right - Left + 1 - Canvas.TextWidth(S)) div 2;y := Top + (Bottom - Top + 1 - Canvas.TextHeight(S)) div 2;end;SetBkMode(Canvas.Handle, TRANSPARENT);Canvas.TextRect(PaintRect, x , y, S);end;//ペイント後に元に戻す Canvas.Brush.Color := Color;end;end;procedure TForm1.lv1CustomDraw(Sender: TCustomListView; const ARect: TRect; var DefaultDraw: Boolean);beginend;//上記は、TlistView の項目再描画メッセージを処理する必要があります。独自のアイテムを好きなように描画したい場合は、それをすべて自分で行う必要があり、それを処理するシステムは必要ありません。 TForm1.lv1CustomDrawItem(Sender: TCustomListView; Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);varBoundRect, Rect: TRect;i: integer;TextFormat: Word;LV: TListView; //このサブプロセスは描画に使用されます。 CheckBox および ImageList プロシージャ Draw_CheckBox_ImageList(r: TRect; aCanvas: TCanvas; Checked: Boolean);varR1: TRect;i: Integer;beginif Sender.Checkboxes thenbeginaCanvas.Pen.Color := clBlack;aCanvas.Pen.Width := 2;//CheckBox の外枠 aCanvas を描画します。長方形 (R.Left + 2、R.Top + 2、R.Left + 14、 R.Bottom - 2);if Checked then //CheckBox のフックを描画 beginCanvas.MoveTo(R.Left + 4, R.Top + 6);aCanvas.LineTo(R.Left + 6, R.Top + 11) ; aCanvas.LineTo(R.Left + 11, R.Top + 5);end;aCanvas.Pen.Width := 1;end;//アイコンの描画開始 i := 2; //i > -1 の場合、ImageIndex の値は任意であり、その後開始 //アイコンの RECT を取得 if Boolean(ListView_GetSubItemRect(sender.Handle, item.Index, 0, LVIR_ICON, @R1)) thenbegin//ImageList_Stats.Draw(LV.Canvas, R1.Left, R1.Top, i);if item.ImageIndex > -1 thenLV.SmallImages.Draw(LV.Canvas, R1.Right + 2, R1.Top, item.ImageIndex);end;end;end;beginLV := TListView(Sender);BoundRect := Item.DisplayRect(drBounds);InflateRect(BoundRect, -1, 0);//独自の要件に従ってこの場所を希望の色に設定して、強調表示を実現できます。 LV.Canvas.Font.Color := clBtnText;//Item.Selected thenbeginif cdsFocused in State thenbeginLV の場合、選択されているかどうかを確認します。 Canvas.Brush.Color := $00ECCCB9; // //clHighlight;endelsebeginLV.Canvas.Brush.Color := $00F8ECE5; //clSilver;end;endelsebeginif (Item.Index mod 2) = 0 thenLV.Canvas.Brush.Color := clWhiteelseLV.Canvas.Brush.Color := $00F2F2F2;end;LV.Canvas.FillRect(BoundRect) ; // i の背景を初期化します := 0 ~ LV.Columns.Count - 1 dobegin// RectListView_GetSubItemRect(LV.Handle, Item.Index, i, LVIR_LABEL, @Rect);case LV.Columns[i].Alignment を取得します oftaLeftJustify:TextFormat := DT_LEFT;taRightJustify:TextFormat := DT_RIGHT;taCenter:TextFormat : = DT_CENTER;elseTextFormat := DT_CENTER;end;case i of0: //キャプションを描画します。0 は Subitembegin ではなくキャプションを意味します//最初に選択ボックスとアイコンを描画します Draw_CheckBox_ImageList(BoundRect, LV.Canvas, Items.Checked);//次に描画しますキャプション TextInflateRect(Rect, -(5 + il1.Width), 0); //後でワイヤーフレームを描画するときに上書きされないように 3 ピクセル後ろに移動します //InflateRect(Rect, -(5), 0) //後でワイヤーフレームを描画するときに上書きされないように 3 ピクセル後ろに移動します DrawText( LV. Canvas.Handle、PAnsiChar(Item.Caption)、Length(Item.Caption)、Rect、DT_VCENTER、DT_SINGLELINE、DT_END_ELLIPSIS、またはTextFormat);end;1..MaxInt: //Draw SubItem[i]beginif (i - 1) = 1 then //ステータス バーを表示します。この例は 3 列目の表示で、beginDrawSubItem(LV, Items, i , StrToFloatDef(Item.SubItems[i - 1], 0), 100, 0, True);endelsebegin//SubItemInflateRect(Rect, -2, -2) のテキストを描画します;if i - 1 <= Items.SubItems.Count - 1 thenDrawText(LV.Canvas.Handle, PCHAR(Item.SubItems[i - 1])、Length(Item.SubItems[i - 1])、Rect、DT_VCENTER またはDT_SINGLELINE または DT_END_ELLIPSIS または TextFormat);end;end;end; //end caseend; //end forLV.Canvas.Brush.Color := clWhite;if Items.Selected then //選択したバーのアウトラインを描画 beginif cdsFocused in State then/ /コントロールがアクティブかどうか LV.Canvas.Brush.Color := $00DAA07A // $00E2B598; //clHighlight;elseLV.Canvas.Brush.Color := $00E2B598; //$00DAA07A // clHighlight;LV.Canvas.FrameRect(BoundRect) //システムに描画させません。 with Sender.Canvas doif Assigned(Font.OnChange) thenFont.OnChange(Font);end;function TForm1.ReDrawItem(HwndLV: HWND; ItemIndex: integer): boolean;beginResult := ListView_RedrawItems(HwndLV, ItemsIndex, ItemsIndex);end;procedure TForm1.btn1Click(Sender: TObject);varItem: TListItem;begin//Use: item: = LV1.Items[1];if Item = nil thenExit;item.subitems[1] := '30' //30% に設定//次にこの itemReDrawItem(LV1.handle, Items.Index);end;procedure; TForm1.trckbr1Change(Sender: TObject);varItem: TListItem;begin//Use: item := LV1.Items[0];item.subitems[1] := IntToStr(trckbr1.Position);//次に、この itemReDrawItem(LV1.handle, Items.Index);end;end を更新します。オブジェクト Form1: TForm1Left = 416Top = 301Width = 494 高さ = 170 キャプション = 'フォーム 1' カラー = clBtnFaceFont.Charset = DEFAULT_CHARSETFont.Color = clWindowTextFont.Height = -11Font.Name = 'MS Sans Serif'Font.Style = []OldCreateOrder = FalsePixelsPerInch = 96TextHeight = 13object btn1: TButtonLeft = 272Top = 96Width = 75Height = 25Caption = 'btn1'TabOrder = 0OnClick = btn1Clickendobject lv1: TListViewLeft = 16Top = 8Width = 457Height = 81Columns = <itemCaption = 'Name'Width = 100enditemCaption = 'Category'Width = 100enditemCaption = 'Progress'Width = 100enditemCaption = 'Resource'Width = 100end>GridLines = TrueItems.Data = {5B000000020000000200000000000000FFFFFFFF02000000000000006B4F3B8BBCECC04D3CECFB70333354D01000000F FFFFFFFFFFFFFFF020000000000000008446F7461B4ABC6E604D3CECFB7043130304DFFFFFFFFFFFFFFFF}ShowWorkAreas il1: TImageListLeft = 384Top = 96Bitmap = {