摘要:
在C#中如下代码 var cbo = new ComboBox();cbo.DropDownStyle = ComboBoxStyle.DropDownList;var cbo.DataSource = new int[]{1, 2, 3};cbo.SelectedIndex = 0;cbo.Sel 阅读全文
摘要:
这个是由于你的程序在运行过程中开启了新线程,而在结束时没有把线程退出 private void BtnUpdate_Click(object sender, EventArgs e) { int iX = this.Left; int iY = this.Top; Thread thr = "更新" 阅读全文