)Silverlight 3/4新特性

轉載自《http://www.cnblogs.com/nasa/archive/2009/07/12/new-future-of-sl3.html》一、Silverlight 3 新特性Silverlight官方網站列出了Silverlight 3的新特性:支援高品質視頻和音頻 直播和點播的真高清(True HD

論.NET反射、委託技術與設計模式關係)

論.NET反射、委託技術與設計模式關係【原文】http://areliang.blogchina.com/2860041.html                                      反射技術與設計模式

Silverlight CoreCLR結構淺析

轉自InfoQ,作者:吳磊Silverlight背後有強大的.Net平台支援,自Silverlight1.1開始它就使用CLR運行時環境,而Silverlight4更是將運行時環境升級為最新的.Net4.0版本。下面我們就來看看Silverlight

Silverlight 巧用檔案產生時間強制用戶端載入最新xap檔案

像大多數的項目一樣,即使在將Silverlight應用程式交付後,我們仍會根據客戶的需求進行相應修改並將xap檔案發送給客戶,客戶經過測試後再部署到生產環境。    

各種版本的流體力學展示

原文:http://coolshell.cn/articles/3421.html#more-3421  某人用Java搞了一個流體力學的示範:http://grantkot.com/MPM/Liquid.html不過,這僅僅是個開始。某同學將其發布上了reddit.com,於是,全世界的同學們開始給力了—— Flash的開發人員首先不服,搞了個

Silverlight – Dynamically Loading an Assembly

Just something that someone asked me about today so sharing here. Imagine that you want to define a portion of your Silverlight application but leave some other piece to run time.For example - a calculation engine or perhaps something more

我的一年實習生涯

 

Silverlight MediaElement 設定Source後停止自動下載

通常使用MediaElement設定Source並把它加到對應的Layout中,MediaElement就會自動連接遠程流媒體並自動下載。下面的方法可以只獲得一部分流,之後停止下載。        Dictionary<MediaElement, Storyboard> mediaElementList = new Dictionary<MediaElement, Storyboard>();        Dictionary<Storyboard,

防止silverlight application被別人引用

在App.xaml.cs的Application_Startup中加入: if (!App.Current.Host.Settings.EnableHTMLAccess) throw new Exception("當前應用程式未允許與DOM通訊"); string htmlUrl = System.Windows.Browser.HtmlPage.Document.DocumentUri.ToString();

代碼檢查工具 FxCop

FxCop能協助你建立一致性更好的代碼,但它不能彌補糟糕的應用程式設計或編程。FxCop也不是一個代碼複查的替代工具,但是它能在代碼複查之前捕獲大量錯誤,所以你可以將更多時間用在重點問題上而不是去為命名慣例去操心。:  http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=6b6c21d2-2006-4afa-9702-529fa782安裝:Windows

如何在silverlight application中擷取silverlight 版本資訊,os資訊和browser資訊

由於silverlight應用程式本身不能在code behind獲得silverlight的版本資訊,可以通過調用js的方式來擷取,需要注意的是這裡使用的是枚舉的方式擷取版本資訊,如果silverlight有更新的話,就需要對js做相應的修改。具體步驟如下所示:一. 擷取silverlight 版本資訊:1. 在 js中添加:function VersionDetector() {            var SLVersion;            try {              

silverlight 捕捉路由事件

Silverlight中事件的處理方式有時會令人費解。其實Silverlight中有兩種事件,它們分別是“直接事件”和“路由事件”。所謂“直接事件”其實就是我們在winform,vb6,mfc等等中使用的事件模型,相信大家已經很熟悉了,MediaElement的MediaEnded事件就是這種類型的事件。而“路由事件”是從WPF發展到Silverlight中的。路由事件沿著視覺化樹狀結構向上冒泡,它總是從嵌套中的最深層元素開始冒泡至嵌套最淺的元素。例如MouseLeftButtonUp事件先從滑

Silverlight Hosted in Winforms

 I think using the Windows Forms WebBrowser control is your best bet. To do this, you'll need your Silverlight app on a webpage, then you point your WebBrowser at the page's URI.   To keep your WebBrowser control from acting like IE, I'd recommend

button doesn’t work after control call back on the page

    today I want to fix a bug about viewVirtualDocument, and when clicking cancel button it should prompt a window about javascript but actually it can not work. So I debugging the program and find the problem is:     the page loads control on the

solve the issue that cannot use converter in xamlreader in silverlight

We cannot new a DataTemplate in code behind, otherwise it will popup an error.There are two solutions to solve this problem, one is to define a DataTemplate in the .xaml file as resources. Such as:<ResourceDictionary   

OMG, Silverlight! Asynchronous is Evil! (or, Call me back when you got it)

I just have to shake my head at this absolutely moronic thread on the Silverlight Forums promoting a "petition" to bring back synchronous webrequests in Silverlight. Really, it has all the elements of the old VB6 flame wars…N.B. 8/18/2008: It looks

)在Silverlight中開啟網頁的幾種方法

在Silverlight中開啟網頁是一件很簡單的事情,本文來概述一下這幾種方法,你會發現,每一種方法需要編寫的代碼都少的可憐,甚至沒有。   1.HyperLinkButton控制項  這是最簡單的方法,只需要設定幾個屬性即可:  NavigateUri:想要開啟的網頁地址  TargetName:目標框架,既_blank、_parent等  例如:1<HyperlinkButton NavigateUri="http://coding.windstyle.cn" TargetName="

silverlight 類比 Mourse Double Click

internal static class MouseButtonHelper    {        private const long k_DoubleClickSpeed = 500;        private const double k_MaxMoveDistance = 20;        private static long m_LastClickTicks = 0;        private static Point m_LastPosition;       

Silverlight中Dependency Property(相依性屬性)

原文串連http://virgos.javaeye.com/blog/592047 學習SL/WPF,Dependency Properties(相依性屬性)是一個全新(陌生)但又無法迴避的概念。 http://www.wpftutorial.net/DependencyProperties.html 這裡有一篇通俗易懂的相關文章,不過是E文的,E文不好的朋友,也可以參考下面的內容: 1.為什麼會出現相依性屬性?

performance issue about log into share point web part

problem posts: when you write down your credencials on login page and click OK button, you will enter into share point web part page. However it takes long time to load the data of the web part, and one cannot bear it. So what will we do about

總頁數: 61357 1 .... 8951 8952 8953 8954 8955 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.