QQ自動登錄裏的一些控件知識
阿新 • • 發佈:2018-08-17
rgs info art col .cn open button 提示 ||
在這個程序裏面有個讀取計算機指定文件的知識:
private void button2_Click(object sender, EventArgs e) { openFileDialog1.ShowDialog(); textBox1.Text = openFileDialog1.FileName; }
就是點擊這個btn,然後就去搜索計算機的文件,紅色字體就是,然後就讀取出他的路徑名稱。
還有就是下面的這3個知識點
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; } }
QQ自動登錄裏的一些控件知識