标签: autocomplete combobox monodevelop
我正在尝试在Mono中制作一个窗口形式。 在表单中,我需要一个带有Autocomplete / AutoSuggest功能的Combobox条目。
有人可以指导我怎么做吗?
答案 0 :(得分:0)
在名为EntryCompletion的输入字段中检查此功能:
Entry entry = new Entry (); entry.Completion = new EntryCompletion ();
执行搜索自动完成example here。
编辑:
以下是Documentation for the feature with the same example