Hi,
Is it possible to localize ultratree resource strings not for the entire application (through the use of a Resources.Customizer) but only for a specific instance of an ultratree ?
Thanks in advance
No, I don't think so. Which particular string(s) did you have in mind?
I would like to customize BeforeNodesDeletedMessage string.
In that case, you could handle the BeforeDelete event of the tree and cancel the default dialog by setting e.DisplayPromptMsg to false.
Then you could show a MessageBox with whatever localized text you want and if the user cancels the deletion, set e.Cancel to true.
ThanksI will use this workaround.