
TreeView and ListView
文章平均质量分 77
iseekcode
Delphi票友
展开
-
Group Items in Delphi's TListView Control
By Zarko Gajic, The TListView Delphi control displays and manages a list of items, displayed in columns, vertically or horizontally, with small or large icons. Windows XP, and later versions,转载 2009-10-18 14:56:00 · 1316 阅读 · 0 评论 -
不用自绘(owner draw)就改变TListView header的字体
To change a font for TListView header Today I want to show how to use the API calls and change a font for ListView header without any extended programming and custom drawing. For examp转载 2009-10-25 09:29:00 · 1192 阅读 · 1 评论 -
使TListView header变成flat
How to set a flat style for TListView header In this tip I want to show how to change a style for header in TListView. For example, you may specify a flat header. You may do it so: 1. to get the转载 2009-10-25 09:36:00 · 595 阅读 · 0 评论 -
ownerDraw ListView 的标题
//By 冯思锐unit srListview;interfaceuses SysUtils, windows, Classes, Controls, ComCtrls, Types, messages, Graphics;type Tsrlistview = class(TListView) private { Private declarations } FhdHa转载 2009-11-02 09:30:00 · 820 阅读 · 0 评论 -
Can I display a node in standard TTreeView component with bold style without custom drawing?
Can I display a node in standard TTreeView component with bold style without custom drawing?Time-to-time I receive the question how I realized a selection by the bold font for some nodes in转载 2009-11-22 21:32:00 · 609 阅读 · 0 评论 -
ItemID - Finding Nodes
ItemID - Finding NodesA common problem encountered when using TreeViews is finding a node.... Say you want to keep a list of the last few nodes the user clicked, how would you do that? Actually it转载 2009-12-01 22:20:00 · 567 阅读 · 0 评论