c#

位置:IT落伍者 >> c# >> 浏览文章

C# 选择器 checkedListBox 移动勾选


发布日期:2019年06月28日
 
C# 选择器 checkedListBox 移动勾选

private void buttonSendChoickedToNosend_Click(object sender EventArgs e)

{

int end = thischeckedListBoxSendItemsCount;

for (int i = ; i < end ; i++)

{

if (checkedListBoxSendGetItemChecked(i))

{

thischeckedListBoxSiftEmailItemsAdd(checkedListBoxSendGetItemText(checkedListBoxSendItems[i]));

}

}

for (int j = ; j < thischeckedListBoxSendCheckedIndicesCount;)

{

thischeckedListBoxSendItemsRemoveAt(thischeckedListBoxSendCheckedIndices[]);//删除

}

}

               

上一篇:VS2010 水晶报表的使用方法

下一篇:C#获取应用程序所在路径