I am new to the WPF. I know that silverlight is asynchronous by default. I want to know whether all operations in WPF is synchronous or asynchronous by default ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.