如何使用CheckedListBox控件
从工具栏中 拽入CheckedListBox 后
我们在Items中 添加 项目
重庆市
四川省
贵州省
云南省
广西壮族自治区
西藏自治区
新疆维吾尔自治区
内蒙古自治区
宁夏回族自治区
陕西省
甘肃省
再来看下 代码
private void button1_Click(object sender, System.EventArgs e)
{
string str="选择结果:";
for(int i=0;i<this.checkedListBox1.CheckedItems.Count;i++)
{
str+=this.checkedListBox1.CheckedItems[i]+"、";
}
if(str[str.Length-1]=='、')
{
str=str.Substring(0,str.Length-1);
}
MessageBox.Show(this,str,"选择结果",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
看下 方法的说明
public System.String Substring ( System.Int32 startIndex , System.Int32 length )
System.String 的成员
摘要:
从此实例检索子字符串。子字符串从指定的字符位置开始且具有指定的长度。
参数:
startIndex: 子字符串的起始位置的索引。
length: 子字符串中的字符数。
返回值:
一个 System.String,等效于此实例中从 startIndex 开始的、长度为 length 的子字符串。 - 或 - 如果 startIndex
与此实例的长度相等且 length 为零,则为 System.String.Empty。
异常:
System.ArgumentOutOfRangeException: startIndex 加 length 之和指示一个不在此实例内的位置。 - 或 - startIndex 或 length 小于零。