摘要: 这篇文章是为了收集Silverlight中的一些技巧,会不定时更新。1.读取外部XML,通过WebClient异步下载。注意,XML文件要放在SL的WEB项目中。 /// /// 获取URL地址 /// /// public static string GetURL() { Uri uri = Application.Current.Host.Source; string url = uri.AbsoluteUri.Replace(uri.AbsolutePath, stri... 阅读全文
posted @ 2012-12-18 15:47 Gyoung 阅读(1572) 评论(1) 推荐(5) 编辑
摘要: public void WriteToXML(FlightFileInfo flight) { try { lock (_obj) { if (!Directory.Exists(logPath)) { Directory.CreateDirectory(logPath); } st... 阅读全文
posted @ 2012-12-18 10:11 Gyoung 阅读(223) 评论(0) 推荐(0) 编辑