gpt4 book ai didi

c# - 如何检查 radComboboxItem 'CheckBox' ?

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:43 24 4
gpt4 key购买 nike

我对库“Telerik”有一点疑问。事实上,我想用'checkBox'实现'RadCombobox'。它运作良好,但当我想要'检查'一个项目,这不可能?!这是我的示例代码。我更改了属性“selected”的属性,但不幸的是,它没有选中“checked”框......

非常感谢您的回答!

<!-- language: lang-cs -->

//Define the sqlAdaptater for binding source

System.Data.SqlClient.SqlDataAdapter myBinding = new SqlDataAdapter("SELECT [name] FROM [dbo].[tblProcess] WHERE [currentVersion] = 1 AND [deleted] = 0 AND [parent] = 0",connectionString);

DataTable links = new DataTable();

myBinding.Fill(links);

//Set the attributs of RadCombobBox

RadComboBoxSelectedEntity.DataTextField = "name";
RadComboBoxSelectedEntity.DataValueField = "name";
RadComboBoxSelectedEntity.DataSource = links;

//Not working..its selected but not checked ?
RadComboBoxSelectedEntity.SelectedIndex = 1;

//Not exist ?? ->
RadComboBoxSelectedEntity.CheckedIndex = 1;

最佳答案

首先尝试调用方法DataBind

RadComboBoxSelectedEntity.DataBind();

在调用 DataBind 之后,您可以尝试这行代码仍然无法正常工作,

RadComboBoxSelectedEntity.Items[1].Checked = true;

关于c# - 如何检查 radComboboxItem 'CheckBox' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11156142/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com