C# CheckedListBox控件的用法

by jack 11. August 2009 19:56

最近用到checklistbox控件,在使用其过程中,花了较多的时间,这里我收集了其相关的代码段,希望对大家有所帮助。

1.

添加项


checkedListBox1.Items.Add("
蓝色");
checkedListBox1.Items.Add("
红色");
checkedListBox1.Items.Add("
黄色");

 

2.
判断第i项是否选中,选中为true,否则为false


if
checkedListBox1.GetItemChecked(i)

{

     return true;

}

else

{

     return false;

}

 

3.
设置第i项是否选中

checkedListBox1.SetItemChecked(i, true);  //true
改为false为没有选中。

 

4.
设置全选
添加一个名为select_allcheckbox控件,由其控制checkedListBox是全选还是全不选。

private void select_all_CheckedChanged(object sender, EventArgs e)
{
     if(select_all.Checked)

{
          for (int j = 0; j < checkedListBox1.Items.Count; j++)
               checkedListBox1.SetItemChecked(j, true);

}
else

{
for (int j =0; j < checkedListBox1.Items.Count; j++)
      checkedListBox1.SetItemChecked(j, false);

}
}

 

5.

得到全部选中的值 ,并将选中的项的文本组合成为一个字符串。


 string strCollected = string.Empty;

 for (int i = 0; i < checkedListBox1.Items.Count; i++)

 {

      if (checkedListBox1.GetItemChecked(i))

      {

          if (strCollected == string.Empty)

          {

               strCollected = checkedListBox1.GetItemText(

checkedListBox1.Items[i]);

          }

          else

          {

               strCollected = strCollected + "/" + checkedListBox1.

GetItemText(checkedListBox1.Items[i]);

           }

       }

}

 

 

6.

设置CheckedListBox中第i项的Checked状态
checkedListBox1.SetItemCheckState(i, CheckState.Checked);

 

 

7.
private void checkBoxAll_CheckedChanged(object sender, EventArgs e)
{
     if (checkBoxAll.Checked)
     {
         //
被选择了则将CheckedListBox中的所有条目都变为Checked状态
         for (int i = 0; i < checkedListBoxLayerControl.Items.Count;

                   i++)
         {    

checkedListBoxLayerControl.SetItemCheckState(i,

        CheckState.Checked);
}

}
else
{
     //
否则变成Unchecked状态
    for (int i = 0;

 i < checkedListBoxLayerControl.Items.Count; i++)
{

checkedListBoxLayerControl.SetItemCheckState(i, CheckState.Unchecked); 

}             

}
}


8.
checkedListBox
单选设置(代码实现)


private void chkl_ItemAuditing_ItemCheck(object sender,   

ItemCheckEventArgs e)
{
     if (chkl_ItemAuditing.CheckedItems.Count > 0)
    {
         for (int i = 0; i < chkl_ItemAuditing.Items.Count; i++)
         {

if (i != e.Index)
{
this.chkl_ItemAuditing.SetItemCheckState(i,

System.Windows.Forms.CheckState.Unchecked);
}

}
}

}

9.
checkedListBox1
显示一个数据库中关键字对应的所有记录


for (int i = 0; i < table.Rows.Count; i++)
{
    string name = table.Rows["myname"].ToString();
    string paw = table.Rows["mypaw"].ToString();
    checkedListBox1.Items.Add(name + paw);
}

 

10.
for(i=0;i<CheckedListBox.Items.Count;i++)  
{  
   if(CheckedListBox.GetItemText(

CheckedListBox.Items)=="你得到的值")  
{  
      CheckedListBox.SetItemChecked(i,true);  
}  

}

 

11.

清除checkedListBox1中所有的选项


for (int i = 0; i < checkedListBox1.Items.Count; i++)

{

    checkedListBox1.Items.Clear();

}



12.

//设置索引为index的项为选中状态


for (int i = 0; i < checkedListBox1.Items.Count; i++)

{

    checkedListBox1.SetItemChecked(i, true);

 

13.  
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{

if (checkedListBox1.GetSelected(i))

{

MessageBox.Show(checkedListBox1.CheckedItems.ToString());

}

}

 

14.

//选中checkedListBox1所有的选项

 

for (int i = 0; i < checkedListBox1.Items.Count; i++)        
{

checkedListBox1.SetItemCheckState(i, CheckState.Checked);

}

 

15.            
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{ 

//如果checkedListBox1的第i项被选中,

//则显示checkedListBox1对应的值

if (checkedListBox1.GetItemChecked(i))
{
     MessageBox.Show(checkedListBox1.Items.ToString());
}

}

 

16.

//反向选择checkedListBox1的选项


for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
    if (checkedListBox1.GetItemChecked(i))
   {
       checkedListBox1.SetItemChecked(i, false);
   }
   else
   {
       checkedListBox1.SetItemChecked(i, true);
   }
}

17.

//checkedListBox1中选定的项->checkedListBox2


for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++)
{
     checkedListBox2.Items.Add(this.checkedListBox1.CheckedItems);

 

//remove是除去一个具体的值,不是index,注意了
     this.checkedListBox1.Items.Remove(

         this.checkedListBox1.CheckedItems);      
}

Tags:

技术文章

Comments

11/27/2011 11:35:20 AM #

Horoskop 2012

This is definitely a topic thats close to me so Im happy that you wrote about it.  Im also happy that you did the subject some justice.  Not only do you know a great deal about it, you know how to present in a way that people will want to read more.  Im so happy to know someone like you exists on the web.

Horoskop 2012 | Reply

11/28/2011 12:48:52 PM #

louis vuitton

factors like heat for like Buckles buttons chains are

louis vuitton | Reply

12/1/2011 12:20:02 PM #

ultraseosolutions.com

I hope you never stop!  This is one of the best blogs Ive ever read.  Youve got some mad skill here, man.  I just hope that you dont lose your style because youre definitely one of the coolest bloggers out there.  Please keep it up because the internet needs someone like you spreading the word.

ultraseosolutions.com | Reply

12/2/2011 5:51:07 AM #

green diarrhea

You...are...my...hero!!!  I cant believe something like this exists on the internet!  Its so true, so honest, and more than that you dont sound like an idiot!  Finally, someone who knows how to talk about a subject without sounding like a kid who didnt get that bike he wanted for Christmas.

green diarrhea | Reply

12/3/2011 5:28:25 AM #

beach hotels thailand

I think youve made some truly interesting points.  Not too many people would actually think about this the way you just did.  Im really impressed that theres so much about this subject thats been uncovered and you did it so well, with so much class.  Good one you, man!  Really great stuff here.

beach hotels thailand | Reply

12/3/2011 11:53:49 AM #

Samui Cheap Villas

Fantastic blog!  I dont think Ive seen all the angles of this subject the way youve pointed them out.  Youre a true star, a rock star man.  Youve got so much to say and know so much about the subject that I think you should just teach a class about it...HaHa!

Samui Cheap Villas | Reply

12/3/2011 7:02:34 PM #

comeon bonus

This is a smart blog.  I mean it.  You have so much knowledge about this issue, and so much passion.  You also know how to make people rally behind it, obviously from the responses.  Youve got a design here thats not too flashy, but makes a statement as big as what youre saying.  Great job, indeed.

comeon bonus | Reply

12/8/2011 3:35:08 PM #

ergonomic office chairs

Im impressed, I must say.  Very rarely do I come across a blog thats both informative and entertaining, and let me tell you, youve hit the nail on the head.  Your blog is important; the issue is something that not enough people are talking intelligently about.  Im really happy that I stumbled across this in my search for something relating to this issue.

ergonomic office chairs | Reply

12/14/2011 11:53:53 AM #

business articles

This is a smart blog.  I mean it.  You have so much knowledge about this issue, and so much passion.  You also know how to make people rally behind it, obviously from the responses.  Youve got a design here thats not too flashy, but makes a statement as big as what youre saying.  Great job, indeed.

business articles | Reply

12/14/2011 1:01:46 PM #

d4 thermal shock

Im impressed, I must say.  Very rarely do I come across a blog thats both informative and entertaining, and let me tell you, youve hit the nail on the head.  Your blog is important; the issue is something that not enough people are talking intelligently about.  Im really happy that I stumbled across this in my search for something relating to this issue.

d4 thermal shock | Reply

12/14/2011 1:13:54 PM #

Baby Sheets

Great job here.  I really enjoyed what you had to say.  Keep going because you definitely bring a new voice to this subject.  Not many people would say what youve said and still make it interesting.  Well, at least Im interested.  Cant wait to see more of this from you.

Baby Sheets | Reply

12/14/2011 2:50:37 PM #

Stock Forum

Can I just say what a relief to find someone who actually knows what theyre talking about on the internet.  You definitely know how to bring an issue to light and make it important.  More people need to read this and understand this side of the story.  I cant believe youre not more popular because you definitely have the gift.

Stock Forum | Reply

12/14/2011 7:09:22 PM #

Meal replacement shakes

How did you get to be this good?  Its amazing to see someone put so much passion into a subject.  Im glad I came across this.  Im glad I took the time to read on past the first paragraph.  Youve got so much to say, so much to offer.  I hope people realise this and look into your page.

Meal replacement shakes | Reply

12/16/2011 9:28:04 AM #

how to get rid of acne

I hope you never stop!  This is one of the best blogs Ive ever read.  Youve got some mad skill here, man.  I just hope that you dont lose your style because youre definitely one of the coolest bloggers out there.  Please keep it up because the internet needs someone like you spreading the word.

how to get rid of acne | Reply

12/17/2011 3:09:58 AM #

Dallas Attorney Bail Bondsman

I just cant stop reading this.  Its so cool, so full of information that I just didnt know.  Im glad to see that people are actually writing about this issue in such a smart way, showing us all different sides to it.  Youre a great blogger.  Please keep it up.  I cant wait to read whats next.

Dallas Attorney Bail Bondsman | Reply

12/17/2011 6:10:21 AM #

california medigap

Im not going to say what everyone else has already said, but I do want to comment on your knowledge of the topic.  Youre truly well-informed.  I cant believe how much of this I just wasnt aware of.  Thank you for bringing more information to this topic for me.  Im truly grateful and really impressed.

california medigap | Reply

12/21/2011 7:35:34 PM #

ppc agency

Your blog is STELLAR!  I mean, Ive never been so entertained by anything in my life!  Your vids are perfect for this.  I mean, how did you manage to find something that matches your style of writing so well?  Im really happy I started reading this today.  Youve got a follower in me for sure!

ppc agency | Reply

12/27/2011 4:30:04 PM #

fosamax lawsuit

I dont know what to say.  This blog is fantastic.  Thats not really a really huge statement, but its all I could come up with after reading this.  You know so much about this subject.  So much so that you made me want to learn more about it.  Your blog is my stepping stone, my friend.  Thanks for the heads up on this subject.

fosamax lawsuit | Reply

12/28/2011 2:16:54 AM #

video depositions

How is it that just anybody can write a blog and get as popular as this?  Its not like youve said anything incredibly impressive --more like youve painted a pretty picture over an issue that you know nothing about!  I dont want to sound mean, here.  But do you really think that you can get away with adding some pretty pictures and not really say anything?

video depositions | Reply

12/28/2011 2:20:08 PM #

Auto Insurance Cincinnati

I dont know what to say.  This blog is fantastic.  Thats not really a really huge statement, but its all I could come up with after reading this.  You know so much about this subject.  So much so that you made me want to learn more about it.  Your blog is my stepping stone, my friend.  Thanks for the heads up on this subject.

Auto Insurance Cincinnati | Reply

12/30/2011 10:34:59 AM #

jeux de fille de cuisine gratuit

I just cant stop reading this.  Its so cool, so full of information that I just didnt know.  Im glad to see that people are actually writing about this issue in such a smart way, showing us all different sides to it.  Youre a great blogger.  Please keep it up.  I cant wait to read whats next.

jeux de fille de cuisine gratuit | Reply

12/30/2011 12:09:41 PM #

michael kors outlet

Good luck getting people behind this one.  Though you make some VERY fascinating points, youre going to have to do more than bring up a few things that may be different than what weve already heard.  What are trying to say here?  What do you want us to think?  It seems like you cant really get behind a unique thought.  Anyway, thats just my opinion.

michael kors outlet | Reply

12/30/2011 5:35:55 PM #

how to lose weight fast without pills

Great stuff from you, man.  Ive read your stuff before and youre just too awesome.  I love what youve got here, love what youre saying and the way you say it.  You make it entertaining and you still manage to keep it smart.  I cant wait to read more from you.  This is really a great blog.

how to lose weight fast without pills | Reply

12/30/2011 7:03:38 PM #

horoscope ascendant

I must say, youve got one of the best blogs Ive seen in a long time.  What I wouldnt give to be able to create a blog thats as interesting as this.  I guess Ill just have to keep reading yours and hope that one day I can write on a subject with as much knowledge as youve got on this one!

horoscope ascendant | Reply

1/2/2012 4:42:49 PM #

walmart careers

Thank you for this blog.  Thats all I can say.  You most definitely have made this blog into something thats eye opening and important.  You clearly know so much about the subject, youve covered so many bases.  Great stuff from this part of the internet.  Again, thank you for this blog.

walmart careers | Reply

1/2/2012 8:28:45 PM #

install extension springs

This is definitely a topic thats close to me so Im happy that you wrote about it.  Im also happy that you did the subject some justice.  Not only do you know a great deal about it, you know how to present in a way that people will want to read more.  Im so happy to know someone like you exists on the web.

install extension springs | Reply

1/4/2012 3:57:56 PM #

air compressor reviews

This layout is so stellar.  How did you manage to make a blog thats as smart as it is sleek? I mean, its like an Aston Martin --smart and sexy at the same time.   Ive got to say, the layout alone made me come back to this blog again.  But now that Ive read what youve got to say, Ive got to share it with the world!

air compressor reviews | Reply

1/8/2012 1:40:06 PM #

cashmere baby blankets

You sure do know what youre talking about.  Man, this blog is just great!  I cant wait to read more of what youve got to say.  Im really happy that I came across this when I did because I was really starting to get bored with the whole blogging scene.  Youve turned me around, man!

cashmere baby blankets | Reply

1/8/2012 7:16:36 PM #

Gothic Dating

Can I make a suggestion?  I think youve got something good here.  But what if you added a couple links to a page that backs up what youre saying?  Or maybe you could give us something to look at, something that would connect what youre saying to something tangible?  Just a suggestion.

Gothic Dating | Reply

1/9/2012 5:54:08 PM #

restaurant cash advance

I dont know what it is about this blog that turns me off so much, but you just dont seem to get me excited.  I dont know if its the lack of content or just the way you wrote it.  But you really dont seem to understand that your readers may not agree with you.  Youre really just too out there for me.

restaurant cash advance | Reply

1/10/2012 5:03:43 AM #

restaurant finance

I dont know what to say.  This blog is fantastic.  Thats not really a really huge statement, but its all I could come up with after reading this.  You know so much about this subject.  So much so that you made me want to learn more about it.  Your blog is my stepping stone, my friend.  Thanks for the heads up on this subject.

restaurant finance | Reply

1/10/2012 6:50:41 AM #

florida dui attorney

This is a smart blog.  I mean it.  You have so much knowledge about this issue, and so much passion.  You also know how to make people rally behind it, obviously from the responses.  Youve got a design here thats not too flashy, but makes a statement as big as what youre saying.  Great job, indeed.

florida dui attorney | Reply

1/12/2012 8:15:34 AM #

Dark Star Clothing

Your blog is STELLAR!  I mean, Ive never been so entertained by anything in my life!  Your vids are perfect for this.  I mean, how did you manage to find something that matches your style of writing so well?  Im really happy I started reading this today.  Youve got a follower in me for sure!

Dark Star Clothing | Reply

1/16/2012 2:27:03 AM #

Step 2 Up and Down Roller Coaster

This layout is so stellar.  How did you manage to make a blog thats as smart as it is sleek? I mean, its like an Aston Martin --smart and sexy at the same time.   Ive got to say, the layout alone made me come back to this blog again.  But now that Ive read what youve got to say, Ive got to share it with the world!

Step 2 Up and Down Roller Coaster | Reply

1/16/2012 10:13:29 AM #

white gold jewelry

I have to say, I dont know if its the clashing colours or the bad grammar, but this blog is hideous!  I mean, I dont want to sound like a know-it-all or anything, but could you have possibly put a little bit more effort into this subject.  Its really interesting, but you dont represent it well at all, man.

white gold jewelry | Reply

1/16/2012 10:14:53 AM #

gold chains

Write more, thats all I have to say.  Literally, it seems as though you relied on the video to make your point.  You clearly know what youre talking about, why waste your intelligence on just posting videos to your blog when you could be giving us something enlightening to read?

gold chains | Reply

1/18/2012 3:57:38 PM #

baby games

This is a smart blog.  I mean it.  You have so much knowledge about this issue, and so much passion.  You also know how to make people rally behind it, obviously from the responses.  Youve got a design here thats not too flashy, but makes a statement as big as what youre saying.  Great job, indeed.

baby games | Reply

1/18/2012 11:40:41 PM #

diamond jewellery

This is definitely a topic thats close to me so Im happy that you wrote about it.  Im also happy that you did the subject some justice.  Not only do you know a great deal about it, you know how to present in a way that people will want to read more.  Im so happy to know someone like you exists on the web.

diamond jewellery | Reply

1/19/2012 4:15:02 AM #

Virtual Office Singapore

What I dont understand is how youre not even more popular than you are now.  Youre just so intelligent.  You know so much about this subject, made me think about it from so many different angles.  Its like people arent interested unless it has something to do with Lady Gaga!  Your stuffs great.  Keep it up!

Virtual Office Singapore | Reply

1/20/2012 6:08:18 PM #

anatomical model

Fantastic blog!  I dont think Ive seen all the angles of this subject the way youve pointed them out.  Youre a true star, a rock star man.  Youve got so much to say and know so much about the subject that I think you should just teach a class about it...HaHa!

anatomical model | Reply

1/20/2012 7:27:30 PM #

executive coaching

Im impressed, I must say.  Very rarely do I come across a blog thats both informative and entertaining, and let me tell you, youve hit the nail on the head.  Your blog is important; the issue is something that not enough people are talking intelligently about.  Im really happy that I stumbled across this in my search for something relating to this issue.

executive coaching | Reply

1/20/2012 7:30:34 PM #

staging course

Thank you for this blog.  Thats all I can say.  You most definitely have made this blog into something thats eye opening and important.  You clearly know so much about the subject, youve covered so many bases.  Great stuff from this part of the internet.  Again, thank you for this blog.

staging course | Reply

1/21/2012 4:48:30 AM #

how to seo

Your blog is outrageous!  I mean, Ive never been so entertained by anything in my life!  Your vids are perfect for this.  I mean, how did you manage to find something that matches your style of writing so well?  Im really happy I started reading this today.  Youve got a follower in me for sure!

how to seo | Reply

1/23/2012 12:43:25 AM #

Los Angeles bankruptcy attorney

How did you get to be this good?  Its amazing to see someone put so much passion into a subject.  Im glad I came across this.  Im glad I took the time to read on past the first paragraph.  Youve got so much to say, so much to offer.  I hope people realise this and look into your page.

Los Angeles bankruptcy attorney | Reply

1/23/2012 1:57:16 AM #

Forex trading system

Im not going to say what everyone else has already said, but I do want to comment on your knowledge of the topic.  Youre truly well-informed.  I cant believe how much of this I just wasnt aware of.  Thank you for bringing more information to this topic for me.  Im truly grateful and really impressed.

Forex trading system | Reply

1/23/2012 12:16:33 PM #

Cosmetic Dentistry Los Angeles

You...are...my...hero!!!  I cant believe something like this exists on the internet!  Its so true, so honest, and more than that you dont sound like an idiot!  Finally, someone who knows how to talk about a subject without sounding like a kid who didnt get that bike he wanted for Christmas.

Cosmetic Dentistry Los Angeles | Reply

1/23/2012 6:13:40 PM #

Greensboro Garage Door

I have to say, I dont know if its the clashing colours or the bad grammar, but this blog is hideous!  I mean, I dont want to sound like a know-it-all or anything, but could you have possibly put a little bit more effort into this subject.  Its really interesting, but you dont represent it well at all, man.

Greensboro Garage Door | Reply

1/27/2012 9:47:00 PM #

Gratis Kartenlegen

I just cant stop reading this.  Its so cool, so full of information that I just didnt know.  Im glad to see that people are actually writing about this issue in such a smart way, showing us all different sides to it.  Youre a great blogger.  Please keep it up.  I cant wait to read whats next.

Gratis Kartenlegen | Reply

1/28/2012 6:18:29 AM #

Balanced Body

Valuable information and excellent design you got here! I would like to thank you for sharing your thoughts and time into the stuff you post!! Thumbs up

Balanced Body | Reply

2/1/2012 11:22:00 PM #

lasik eye surgery cost

I have to say, I dont know if its the clashing colours or the bad grammar, but this blog is hideous!  I mean, I dont want to sound like a know-it-all or anything, but could you have possibly put a little bit more effort into this subject.  Its really interesting, but you dont represent it well at all, man.

lasik eye surgery cost | Reply

2/4/2012 10:52:45 AM #

horoscope du jour gratuit poisson

Im not going to say what everyone else has already said, but I do want to comment on your knowledge of the topic.  Youre truly well-informed.  I cant believe how much of this I just wasnt aware of.  Thank you for bringing more information to this topic for me.  Im truly grateful and really impressed.

horoscope du jour gratuit poisson | Reply

2/4/2012 7:59:55 PM #

horoscope du jour cancer

This is one of the most incredible blogs Ive read in a very long time.  The amount of information in here is stunning, like you practically wrote the book on the subject.  Your blog is great for anyone who wants to understand this subject more.  Great stuff; please keep it up!

horoscope du jour cancer | Reply

2/4/2012 11:03:16 PM #

jeux de fille gratuit

I must say, youve got one of the best blogs Ive seen in a long time.  What I wouldnt give to be able to create a blog thats as interesting as this.  I guess Ill just have to keep reading yours and hope that one day I can write on a subject with as much knowledge as youve got on this one!

jeux de fille gratuit | Reply

2/5/2012 7:47:24 PM #

ogzfghcsm

twmowpgcj gblbf fkxqpdl hnvx tyhrvcbluxuqbse

ogzfghcsm | Reply

2/6/2012 5:15:53 PM #

wow gold buying

Macau retail sales this year of 49 7  sell your wow gold from the platinum component white rubber

wow gold buying | Reply

Add comment


(Will show your Gravatar icon)

biuquote
  • Comment
  • Preview
Loading



Copyright © 2009 APJ Software

最新评论

Comment RSS

公告

欢迎使用APJ Blog!

日历

<<  February 2012  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
2728291234
567891011

View posts in large calendar