delphi TreeView详解分析和总结.docxVIP

  • 2
  • 0
  • 约8.94千字
  • 约 7页
  • 2023-03-12 发布于湖北
  • 举报
delphi delphi TreeView 详解 property AutoExpand: Boolean; AutoExpand BorderStyle  Set AutoExpand to true to cause the selected item to expand and the unselected items to collapse. property BorderStyle: TBorderStyleTBorderStyle; Set BorderStyle to specify whether the tree view control should be outlined with a single-line border. These are the possible values: Value Meaning bsNone No visible border bsSingle Single-line border property Canvas: TCanvas; Canvas ChangeDelay DropTarget  Use the Canvas property to paint to the canvas from the OnCustomDraw and OnCustomDrawItem event handlers. property ChangeDelay: Integer; Use ChangeDelay to get or set the delay, in milliseconds, between when a node is selected and when the OnChange event occurs. Set the ChangeDelay to 50 milliseconds to emulate the behavior of the tree-view control used in Windows Explorer. property DropTarget: TTreeNode; Read DropTarget to determine whether a node in the tree view is drawn as the target of a drag and drop operation. Set DropTarget when specifying a particular node in the tree view as the drop target of a dragged item. Note: When DropTarget is set, the application must still handle the actual logic of accepting the dragged object by the indicated node. property HideSelection: Boolean; Use HideSelection to specify whether the user is given visual HideSelection feedback about the current selection in the tree view when it does not have focus. If true, the selected node is not visually distinct from other nodes until focus returns to the control. If false, the node always appears selected. property HotTrack: Boolean; HotTrack Set HotTrack to true to provide visual feedback about which item is under the mouse. Set HotTrack to false to suppress the visual feedback about which item is under the mouse. property Images: TCustomImageList; Images Use Images to provide a customized list of bitmaps that can be displayed to the left of a node’s label. Individual nodes specify the image from this list

文档评论(0)

1亿VIP精品文档

相关文档