.net TAG进入控制
我希望在 .net 表单应用程序中具有标签输入功能。框架是2.0。
我正在寻找一种文本输入控件,其行为类似于此字段下方的控件(任何输入过问题的人都会知道),因此:
- 自动完成
- 下拉弹出窗口
是必须的。
但是,我需要它在标签旁边显示一个图标,该图标将描述其类型:
- 人员
- 、地点、
- 产品
- 公司
- 等...
编辑:
是的,如果可能的话,它应该包含多个标签。
I would like to have tag entering functionality in .net forms app. Framework is 2.0.
I am looking for a text entry control that would behave like the one below this field (anyone who ever entered a question will know), so:
- autocomplete
- drop down popup
are a must.
However, I need it to display an icon beside the tag, which will describe its type:
- person
- place
- product
- company
- and so on...
EDIT:
Yeah, it should include multiple tags, if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Telerik 的 Winforms Combobox 几乎符合您的要求。它不允许在一个文本框中输入多个标签,但确实为您提供了丰富的用户界面来列出包括图像在内的标签。您可以简单地复制 SO 标记 UI 的其余部分,例如,一旦按下 Enter 键,将其添加到组合框下方的列表元素中。
Telerik's Winforms Combobox almost matches your requirements. It would not allow multiple tags to be entered in one textbox but does give you a rich UI for listing tags including images. You could simply copy the rest of SO's tagging UI e.g. once they hit enter, add it to a list element below the combobox.