组合框和下拉列表之间的区别

组合框和下拉列表之间的区别

本文介绍了组合框和下拉列表之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

组合框和下拉列表的区别是什么?

What''s the difference combo box and drop down list?
Under what conditions should any of them be used?

推荐答案

Simple

Specifies that the list is always visible and that the text portion is editable. This means that the user can enter a new value and is not limited to selecting an existing value in the list.

DropDown

Specifies that the list is displayed by clicking the down arrow and that the text portion is editable. This means that the user can enter a new value and is not limited to selecting an existing value in the list. When using this setting, the Append value of AutoCompleteMode works the same as the SuggestAppend value. This is the default style.

DropDownList

Specifies that the list is displayed by clicking the down arrow and that the text portion is not editable. This means that the user cannot enter a new value. Only values already in the list can be selected. The list displays only if AutoCompleteMode is Suggest or SuggestAppend.



因此,术语DropDownList通常用于描述具有DropDownList下拉样式的组合框,即具有不可编辑文本字段的组合框



Therefore the term DropDownList is often used to describe a combobox with a drop down style of DropDownList, i.e. a combobox with a non-editable text field



这篇关于组合框和下拉列表之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 08:03