摘要:
//KeyPress事件:当控件获得焦点,并且用户按下且释放键盘上的键后发生 private void textBox1_KeyPress(object sender, KeyPressEventArgs e)//文本框只接受数字的输入和小数点 { //IsNumber:指定字符串中位于指定位置的字符是否属于数字类别 //I... 阅读全文
摘要:
//在DataGridView中显示行号,需要要处理DataGridView的RowPostPaint事件: private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { SolidBrush B = new SolidB... 阅读全文