![]() |
Delphi-Version: 2010
TListView.OnDrawItem
I wanted make list with recent files. I also wanted make grey these items, that match file not exists (click File-->Reopen-->Properties in Delphi to see what I want to do). This is what I have:
Delphi-Quellcode:
I want just grey text if file not exists. Any help with this? :(
begin
with lvRecentFiles, lvRecentFiles.Canvas do begin if FileExists(Item.Caption) then Pen.Color := clBlack else Pen.Color := clGrayText ; TextOut(Rect.Left + 2, Rect.Top + 2, Item.Caption); end; end; |
AW: TListView.OnDrawItem
Delphi-Quellcode:
if FileExists(Item.Caption) then
Font.Color := clBlack else Font.Color := clGrayText; |
Re: TListView.OnDrawItem
Oh, why I didn't think about this :D
Delphi-Quellcode:
There is grey, but can't be selected as when OwnerDraw is False (in system style). In Delphi can be. Any idea?
begin
with lvRecentFiles, lvRecentFiles.Canvas do begin if FileExists(Item.Caption) then Font.Color := clBlack else Font.Color := clGrayText ; //TextOut(Rect.Left + 2, Rect.Top + 2, Item.Caption); R := Classes.Rect(Rect.Left + 6, Rect.Top + 3, Rect.Right, Rect.Bottom - 2); S := Item.Caption; TextRect(R, S, [tfEndEllipsis]); end; end; |
AW: TListView.OnDrawItem
You have to evaluate the state
|
AW: TListView.OnDrawItem
The item gets selected, but you don't see it because it is your responsiblity to give the user visual feedback if you draw the items yourself.
|
Re: TListView.OnDrawItem
So, how I can draw it in current Windows's style?
|
AW: TListView.OnDrawItem
Markus gave you the answer.
|
Re: TListView.OnDrawItem
Yes, but how about in current system style. For example in XP there is solid color, but on Vista+ there is gradiented. I want to just grey text, all other should be "original". Are you understand what I mean ;)
|
AW: TListView.OnDrawItem
Call the standard Draw-Routine after you set the new Color
|
Re: TListView.OnDrawItem
What you mean? I'm not pro in owner drawing :( Could you give me an example?
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:38 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz