Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 aspx 页面中包含了 Telerik RedComboBox。我想在 RedComboBox 中显示项目列表,但不允许用户选择项目。
它总是应该显示默认值。
提前致谢。
要禁用 Combobox ,您可以使用 enabled 和 disabled 属性。
要选择默认值,您可以使用以下内容:
RadComboBoxItem item = ddl.FindItemByText(text of your default item here); item.Selected = true