web-dev-qa-db-ja.com

テキストが必要なものと等しいチェックボックスリストでプログラムでアイテムをチェックする

C#では、テキストが必要なものと等しいCheckBoxListの項目をチェックしようとしています。

データベースに存在するアイテムをチェックするようにコードを変更します。

例が必要な場合は、abcと等しいチェックリスト項目を選択する必要があります

19
Peter Roche

CheckedListBoxのアイテムが文字列であると仮定します。

  for (int i = 0; i < checkedListBox1.Items.Count; i++)
  {
    if ((string)checkedListBox1.Items[i] == value)
    {
      checkedListBox1.SetItemChecked(i, true);
    }
  }

または

  int index = checkedListBox1.Items.IndexOf(value);

  if (index >= 0)
  {
    checkedListBox1.SetItemChecked(index, true);
  }
43
wdavo

ASP.NET CheckBoxListに基づく例

<asp:CheckBoxList ID="checkBoxList1" runat="server">
    <asp:ListItem>abc</asp:ListItem>
    <asp:ListItem>def</asp:ListItem>
</asp:CheckBoxList>


private void SelectCheckBoxList(string valueToSelect)
{
    ListItem listItem = this.checkBoxList1.Items.FindByText(valueToSelect);

    if(listItem != null) listItem.Selected = true;
}

protected void Page_Load(object sender, EventArgs e)
{
    SelectCheckBoxList("abc");
}
8
Jim Scott

@Jim Scottの全クレジット-ワンタッチを追加しました。 (ASP.NET 4.5およびC#)

これをもう少し再構築します... CheckBoxListをオブジェクトとしてメソッドに渡すと、CheckBoxListで再利用できます。また、テキストまたは値のいずれかを使用できます。

private void SelectCheckBoxList(string valueToSelect, CheckBoxList lst)
{
    ListItem listItem = lst.Items.FindByValue(valueToSelect);
    //ListItem listItem = lst.Items.FindByText(valueToSelect);
    if (listItem != null) listItem.Selected = true;
}

//How to call it -- in this case from a SQLDataReader and "chkRP" is my CheckBoxList`

SelectCheckBoxList(dr["kRPId"].ToString(), chkRP);`
2
Dan B

動的に作成されたListItemを追加し、選択した値を割り当ててみました。

foreach(var item in yourListFromDB)
{
 ListItem listItem = new ListItem();
 listItem.Text = item.name;
 listItem.Value = Convert.ToString(item.value);
 listItem.Selected=item.isSelected;                 
  checkedListBox1.Items.Add(listItem);
}
checkedListBox1.DataBind();

dataSourceのバインドを使用しないでください。DBからのチェック済み/未チェックのバインドは行われません。

0

//複数選択:

          private void clbsec(CheckedListBox clb, string text)
          {
              for (int i = 0; i < clb.Items.Count; i++)
              {
                  if(text == clb.Items[i].ToString())
                  {
                      clb.SetItemChecked(i, true);
                  }
              }
          }

==>を使用

clbsec(checkedListBox1,"michael");

or 

clbsec(checkedListBox1,textBox1.Text);

or

clbsec(checkedListBox1,dataGridView1.CurrentCell.Value.toString());
0
ardem