摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文
posted @ 2020-07-08 21:16 小白沙 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 播放声音: using System.Media; SoundPlayer player1 = new SoundPlayer(@"j:\5.wav"); player1.Play(); 调用其他控件的事件 button2.PerformClick(); 对控件使用变量进行操作 TextBox tx 阅读全文
posted @ 2020-06-30 15:34 小白沙 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 珠心算:目前和为9以内加减法;最多随机7个数字,从第二个数字开始,随机数加前面的数字和不超过9, 差不能小于0; 据此规则得: 0-sum<=a <= 9-sum; 得知待填入数字a的范围。 通过for 遍历, 获得处在这个区间的数字在数组中的index, 以这个index做为 random.nex 阅读全文
posted @ 2020-06-27 08:55 小白沙 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Form1.CS using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Syst 阅读全文
posted @ 2020-06-20 20:34 小白沙 阅读(195) 评论(0) 推荐(0) 编辑
摘要: Winform下program 类 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;using System 阅读全文
posted @ 2020-06-13 07:58 小白沙 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Access 另存为 .mdb 数据库; 在winform 中使用 Datagridview 控件,可以显示所有的源数据 using System;using System.Collections.Generic;using System.ComponentModel;using System.Da 阅读全文
posted @ 2020-06-12 21:07 小白沙 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 原始代码: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;using System.Diag 阅读全文
posted @ 2020-06-11 21:59 小白沙 阅读(136) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace 查找特定目录下的子目录{ class Program { static int fi 阅读全文
posted @ 2020-06-11 21:55 小白沙 阅读(326) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO; namespace ConsoleApp1{ 阅读全文
posted @ 2020-06-02 22:00 小白沙 阅读(104) 评论(0) 推荐(0) 编辑
摘要: using System; //无参数的委托 namespace ConsoleApp1{ class Program { delegate void MyDel(); public void Print1() { Console.WriteLine("I am print 1"); } publi 阅读全文
posted @ 2020-06-01 21:53 小白沙 阅读(103) 评论(0) 推荐(0) 编辑