Delphi:多个标记编辑组件

发布于 2024-09-03 10:51:52 字数 132 浏览 4 评论 0原文

我正在寻找一个增强的编辑组件,允许用户手动输入由某个符号分隔的多个标记(项目),或者从其他来源选择它们。

它类似于 Outlook 或 Facebook 中的“TO”字段,允许您输入多个收件人。

谁能提出任何解决方案?

I'm looking for an enchanced edit component that allow users to input multiple tokens (items) manually separated by some symbol, or to select them from another source.

It's something like "TO" field in outlook or facebook that allow you to input multiple recipients.

Can anyone suggest any solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花心好男孩 2024-09-10 10:51:52

我们这样做的方式是使用普通的按钮编辑框,当用户单击按钮时,我们会呈现一个单独的表单(如果您愿意,可以使其看起来像下拉框),其中包含带有复选框的清单或列表视图启用或类似。用户选择任意数量的项目,然后当表单关闭时,我们获取所选项目的列表,并将它们在编辑中显示为逗号或分号分隔的列表。编辑本身是只读的,因此所有交互都通过单独的表单进行。

但是 - 我真的不喜欢整个方法(对于我们的应用程序),因为当您有许多选定的项目时,它看起来不太好,并且我正在寻找一种更好的方式来显示选择!我想一种选择是使用带有滚动条的只读备忘录来显示项目。

TMS 有一些不错的组件,其中之一是可能有用的 TCheckListEdit

The way we sort of do it is to use an normal button edit box and when the user clicks the button we present a separate form (which can be made to look like a drop down box if you like) with a checklist or listview with checkboxes enabled or similar. The user selects any number of the items then when the form closes we take the list of selected items and present them in the edit as a comma or semi-colon separated list. The edit itself is read-only so all interaction goes through the separate form.

But - I really don't like the whole approach (for our app) as it doesn't look good when you have many selected items and I'm looking to find a better way of showing the selection! I suppose one option is to use a read-only memo with scrollbars to show the items.

TMS has some nice components, one of which is the TCheckListEdit which might be of use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文