摘要: How to release COM objects in Silverlight 4这个网上有个例子 private void Button_Click(object sender, RoutedEventArgs e) { using (dynamic app = AutomationFactory.CreateObject("Excel.Application")) { using (dynamic book = app.Workbooks.Add()) { using (dynamic sheet = app.ActiveSheet()) { ... 阅读全文
posted @ 2012-08-16 18:57 Ken-Cai 阅读(190) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/Articles/253391/How-to-use-PInvoke-in-Silverlight-5 阅读全文
posted @ 2012-08-16 17:34 Ken-Cai 阅读(112) 评论(0) 推荐(0) 编辑