我正在vb上编写一个c#windows窗体应用程序。我有一个列表框,当我双击任何数据时,它被删除但在删除之前我想将数据保存在字符串或整数中。我怎样才能做到这一点?
这是我要删除的代码:
void listBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
int index = this.listBox1.IndexFromPoint(e.Location);
if (index != System.Windows.Forms.ListBox.NoMatches)
{
MessageBox.Show(index.ToString());
listBox1.Items.RemoveAt(index);
}
}
答案 0 :(得分:0)
您可以将所选项目存储在如此
的变量中object selected = listBox1.Items[index];
这就是你要求的吗?