摘要:
1.建立随机粒子类public class Cellule { public Cellule() { Age = 0; } public Brush GetBrush() { if (isLibre() == true) return new SolidColorBrush(Colors.Transparent); Brush brush = null; if (Age == 1) brush =... 阅读全文
摘要:
Silverlight版的计算器,功能全面1.PaperTrail.cs /// <summary> /// 输入框处理类 /// </summary> public class PaperTrail { string args; private TextBox PaperBox; public PaperTrail() { } public PaperTrail(Text... 阅读全文
摘要:
MSN Entertainment是用Silverlight开发的网站,是一个娱乐网站,涉及地图(BingMap)技术,图片展示技术,视频播放技术。它获取数据的方法比较特殊。使用StartupEventArgs来获取数据。 StartupEventArgs是获取作为 Silverlight 插件的 HTML 初始化的一部分传递的初始化参数,在Html或aspx写入。下面我们看一下Twilight... 阅读全文