diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-09-05 13:47:11 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-09-05 13:47:11 +0000 |
commit | 23830188c2428872ccdcb0da09ca6f5afcb8291d (patch) | |
tree | 704633441cac596b7b4681fe670cfcd36204b187 /examples/gui/treeviewtest | |
parent | 9d24ec49a59de3bedfe386d1bd21b8c4028c12a1 (diff) | |
download | fpGUI-23830188c2428872ccdcb0da09ca6f5afcb8291d.tar.xz |
* Treeview linestyle has been changed to lsDot by default.
* Mouse selection is now supported.
* Node expand and collapse is now possible with the mouse.
Diffstat (limited to 'examples/gui/treeviewtest')
-rw-r--r-- | examples/gui/treeviewtest/treeviewtest.lpr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gui/treeviewtest/treeviewtest.lpr b/examples/gui/treeviewtest/treeviewtest.lpr index d8e6a9b7..27b1a3e4 100644 --- a/examples/gui/treeviewtest/treeviewtest.lpr +++ b/examples/gui/treeviewtest/treeviewtest.lpr @@ -38,7 +38,7 @@ begin tree.SetPosition(8, 8, Width-16, Height-16); tree.Anchors := [anTop, anLeft, anRight, anBottom]; // tree.ShowColumns := True; -// tree.TreeLineStyle := lsDot; +// tree.TreeLineStyle := lsSolid; tree.ScrollWheelDelta := 30; n := tree.RootNode.AppendText('Node 1'); |