在這個程序裏面有個讀取計算機指定文件的知識:html
private void button2_Click(object sender, EventArgs e) { openFileDialog1.ShowDialog(); textBox1.Text = openFileDialog1.FileName; }
就是點擊這個btn,而後就去搜索計算機的文件,紅色字體就是,而後就讀取出他的路徑名稱。字體
還有就是下面的這3個知識點spa
private void button1_Click(object sender, EventArgs e) { if (listView1.Items.Count == 0)
{
MessageBox.Show("請先添加須要登陸的QQ/TM號碼", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return; } for (int j = 0; j < listView1.Items.Count; j++) { if (listView1.Items[j].Checked==true) System.Diagnostics.Process.Start(textBox1.Text,listView1.Items[j].SubItems[2].Text); } }
//這個方法,直要輸入進去數字,就會觸發 private void textBox2_KeyPress(object sender, KeyPressEventArgs e) { //e.KeyChar獲取的是你按下鍵的字符 //e.KeyChar的值的形式是:ASII碼+'輸入的值' e.Handled = e.KeyChar < '0' || e.KeyChar > '9'; //容許輸入數字 if(e.KeyChar==(char)8) //容許輸入回退鍵 { e.Handled=false; } }