一、DebugSilverlight应用程序的方法:
***种:
1.Silverlight引用命名空间:System.Diagnostics;
2.在程序必要的地方写:Debug.WriteLine("想要输出的内容");
3.Debug的时候,在输出窗口就可以输出“想要输出的内容”
第二种:
1.引用命名空间:System.Windows.Browser;
2.在程序必要的地方写:HtmlPage.Window.Alert("alert的信息");
3、运行的时候就能够alert出“alert的信息”;
这两种方法,我个人觉得都很不错,特别是***种,比在哪个地方设置断点来调试方便多了。只要看到那个地方没输出,就等于知道了哪个地方出现了错误。
二、Silverlight使用全屏
1.引用命名空间:System.Windows.Interop;
2.在程序必要的地方写:ContentmyContent=newContent();myContent.IsFullScreen=!myContent.IsFullScreen;
这样就可以控制运行程序是否全屏。
三、实现Timer计时器
1.引用命名空间:System.Windows.Threading;
2.实例化Timer对象:
- DispatcherTimertimer=newDispatcherTimer();
- timer.Interval=TimeSpan.FromMilliseconds(10);
- timer.Tick+=newEventHandler(timer_Tick);
- voidtimer_Tick(objectsender,EventArgse)
- {
- //todo
- }
就这样,一个timer已经完成了。
但是要让它执行,就必须写上timer.Start();要停止的话就写上timer.Stop();
以上这三点,我觉得在学习Silverlight的时候,一定会很有用,特别是***点,我个人觉得在其他开发可能也会很有用。希望大家努力拍砖吧。
【编辑推荐】