当前位置 : 主页 > 编程语言 > delphi >

delphi – 如何将文本字符串及其超链接从HTML页面拖动到TEdit

来源:互联网 收集:自由互联 发布时间:2021-06-23
我希望将文本字符串及其超链接从 HTML页面拖到TEdit. 例如 显示aaa 实际字符串是 a href = somewhere.html aaa / a 我尝试使用drag drop vcl,但发现它只能捕获aaa本身而不是字符串及其超链接. 欢迎任
我希望将文本字符串及其超链接从 HTML页面拖到TEdit.
例如

显示aaa

实际字符串是< a href = somewhere.html> aaa< / a>

我尝试使用drag& drop vcl,但发现它只能捕获aaa本身而不是字符串及其超链接.

欢迎任何评论

谢谢
InterDev中

去下载Anders Melander的免费 Drag and Drop Component Suite.在其中你会找到TDropURLTarget来放置你的表格.设置其Target属性以引用您的TEdit控件,当在其中删除URL时,将更新组件的URL和Title属性,以便您可以在OnDrop事件处理程序中检查它们.套房里有几个例子; TargetDemo有基础知识.
网友评论