Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 TRichEdit。当我选择一些文本并单击另一个元素时,所选文本的选择消失了。有没有办法保持这个选择,当 TRichEdit 失去它的焦点时?谢谢!
TRichEdit 有一个HideSelection默认的属性True。如果设置为,False那么即使 TRichEdit 没有焦点,选择仍然可见。
HideSelection
True
False
顺便说一句:该属性HideSelection也存在于其他控件上。当您在列表视图或树视图中显示所选项目的详细信息时,它在 TListView 或 TTreeView 上也非常有用。