Вопрос

Is there a way to tell if a treeview node is currently in edit mode?

I'm using the KeyUp event to determine if the delete key was hit - I only want to fire off my 'do you really want to delete this' code if the user is NOT editing.

This project is using Delphi 2010.

Это было полезно?

Решение

You can ask the TTreeView.IsEditing property. From the reference:

Indicates whether a node is currently being edited by the user. IsEditing returns true if any node label in the tree view is being edited.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top