Whether all operations in WPF is synchronous or asynchronous by default ?
I am new to the WPF. I know that silverlight is asynchronous by default. I want to know whether 开发者_StackOverflowall operations in WPF is synchronous or asynchronous by default ?
Silverlight is a different (branch of the) framework, and it only has asynchronous versions of most methods.
WPF is part of the base .NET framework and you can use the full range of synchronous library methods as well as the asynchronous versions. For performance the async ones should be favored.
精彩评论