List of WPF functionalities that aren't in Silverlight 3

Deadly 提交于 2019-12-03 04:53:18

Programmatic Differences Between Silverlight and WPF, A Whitepaper by Wintellect, LLC:

http://wpfslguidance.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28278

69 Pages, covers almost everything.

Cross-domain restrictions - Silverlight can only access sites which allow it via crossdomain.xml or clientaccesspolicy.xml.

For example, Silverlight can't communicate directly with Twitter's API or StackOverflow RSS feeds.

mattmanser

I answered a very similar question a few days ago, here:

WPF vs XBAP vs Silverlight... which suits business applications?

Some of the more notable ones are you can't open a new window, there's an inability to put the app in the notification area and no mousewheel support (not sure if there is in WPF). Some things are trickier to program too.

"...and no mousewheel support (not sure if there is in WPF)...".

There is mouse wheel support, but not as easy as in WPF. You have to listen to the MouseWheel event an calculate the scrolling offset by yourself.

Another thing that is different is, that you do not have Ancestor-Binding in Silverlight.

See: Silverlight WPF Compatibility (MSDN) and Contrasting Silverlight and WPF (Patterns & Practices)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!