文章分类 -  c#

摘要:private void button1_Click(object sender, EventArgs e) {//去掉字符串头尾指定字符 string MyInfo= "--中华人民共和国--"; //显示 "中华人民共和国" MessageBox.Show(MyInfo.Trim(new cha 阅读全文
posted @ 2020-03-14 13:31 好学不好学 阅读(662) 评论(0) 推荐(0)
摘要:private void textBox_KeyPress(object sender, KeyPressEventArgs e) { if ((e.KeyChar >= 'a' && e.KeyChar <= 'z') || (e.KeyChar >= 'A' && e.KeyChar <= 'Z 阅读全文
posted @ 2020-03-11 12:06 好学不好学 阅读(349) 评论(0) 推荐(0)