摘要:
一个小案例,菜鸟的学习,高手 看个热闹,新手鼓励交流 private void button2_Click(object sender, EventArgs e)//实现按钮向左缩进字符然后现在是尾部 { string str = textBox1.Text; textBox1.Text = str.Substring(1, str.Length - 1) + str[0]; } private void button1_Click(object sender, EventArgs e) { string str = textBox1.Text; textBox1.Text = str[... 阅读全文
摘要:
需求:1.实时更新 日期时间2.可以ping多个IP 地址,必须判断 IP地址的正确性,不能为广播地址3.对ping结果的显示4.调用CMD命令5.实现点击关闭,触发 关闭或者不关闭缺点:由于能力有限,未能从异步和线程角度 考虑问题,导致 性能不是很好。View Code using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.W 阅读全文