摘要: 一、装箱和拆箱 装箱是将值类型转换为引用类型 eg: Int a=5; Object o=a; 拆箱是将引用类型转换为值类型 eg: Int a=5; Object o=a; Int b=(int)o; 利用装箱和拆箱功能,可通过允许值类型的任何值与 Object 类型的值相互转换,将值类型与引用类 阅读全文
posted @ 2017-12-28 22:25 绳命如此井猜 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 一、变量的声明 访问修饰符 数据类型 变量名; 访问修饰符:public ,private,protected 变量的访问修饰符默认为private eg: a=10; 同类型的两个变量声明 不同类型的两个变量的声明必须用单独语句 bool y=true; Bit:比特,是计算机运算的基础;Byte 阅读全文
posted @ 2017-12-28 15:28 绳命如此井猜 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 贪吃蛇总结: this.Left = 0; this.Top = 0; this.Width = 800; this.Height = 600; for (int i = 0; i < 5; i++) { bd = new Border(); bd.Width = bd.Height = 10; b 阅读全文
posted @ 2017-12-20 16:19 绳命如此井猜 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Drawing; 3 using System.Windows.Forms; 4 using System.Media; 5 6 namespace dazimuyouxi_2 7 { 8 public partial class Form1 : Form 9 { 10 ... 阅读全文
posted @ 2017-12-19 22:41 绳命如此井猜 阅读(439) 评论(0) 推荐(0) 编辑
摘要: int[] face = new int[4]; Random ra = new Random(); for (int i = 0; i < face.Length; i++) { int count = 0; face[i] = ra.Next(0,2);... 阅读全文
posted @ 2017-12-19 22:10 绳命如此井猜 阅读(2506) 评论(0) 推荐(0) 编辑
摘要: 忘可供大家参考。。。。 阅读全文
posted @ 2017-12-15 19:13 绳命如此井猜 阅读(634) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System 阅读全文
posted @ 2017-12-13 21:47 绳命如此井猜 阅读(885) 评论(0) 推荐(1) 编辑
摘要: 贪吃蛇总结: 1. 创建WPF应用程序 2. 添加Canvas标签。Name=back; 3. 添加loaded事件 4. 在loaded事件中创建蛇(设置蛇的位置,大小,颜色) this.Left = 0; this.Top = 0; this.Width = 800; this.Height = 阅读全文
posted @ 2017-12-13 21:45 绳命如此井猜 阅读(2734) 评论(0) 推荐(0) 编辑
摘要: 当我第一次添加滚动条时候,我发现滚动条总是跑向上方,经过研究 解决方案如下: this.textBox1.Focus(); 获取焦点 this.textBox1.Select(this.textBox1.textLength,0); 选择到最后一行文本 this.textBox1.ScrollToC 阅读全文
posted @ 2017-11-08 22:51 绳命如此井猜 阅读(1729) 评论(0) 推荐(0) 编辑