开发者

Silverlight performance issue!

开发者 https://www.devze.com 2023-02-16 09:51 出处:网络
I have a serious Performance issue in my Silverlight project, when I run my project the CPU usage is going up 80% - 90%

I have a serious Performance issue in my Silverlight project, when I run my project the CPU usage is going up 80% - 90%

the computer go down!!!, these are the major feature of the project:

1- We are using Silverlight 4.

3- We are using MVVM pattern, which means all data source, states are Binding with the properties in the View Model.

4- Most of the controls are created dynamicly in code.

5- We have a referenc开发者_运维技巧e for the Main control in the Main view model which is the container of all generated control.

6- In our controls we have many of layouts (Grids).

7- We have Main view model which is the container of all children view models in the system.

8- We have lots of states and animations.

9- We don't use the Relay commands, we are using the regular commands and events, so we raise the event and handle it's parent (we have lots of events).

Is there any of the above causes the performance problem??? I thinks that there is a issue in the Silverlight itself, is there any Silvelight 4 update for performance.

I appreciate any help,

Thanks


A complex application is likely to have performance issues to resolve. The use of data-binding and various events, while great for structuring your application, can make it hard to see what's going on. The control flow may not be obvious, for example code may be executing multiple times due to cascading events/property changes.

I'd recommend using a profiler to see what is consuming most CPU time - JetBrains DotTrace is one I've used with Silverlight, see other questions for more. Then you can focus on the problem areas.

If your application is becoming progressively slower over time, it would be worth investigating whether there are memory leaks also.


Are you using DropShadowEffect anywhere? In which case, you might want to try removing them. I've had this issue once. A template included a DropShadowEffect which made the CPU max out, removing it solved the problem.


In my experience, your 9th point is usually the culprit.

Make sure that you release the event handlers in your classes when you're done with them. In almost all cases where I've seen performance degradation in Silveright or WPF is was the improper handling of event delegates.

As one of the comments pointed out, use a performance profiler and you'll most likely see that the event handlers are consuming an inordinate amount of RAM...meaning that they're sticking around after they're supposed to, and responding to events.

So the performance issue stems from having many objects or controls staying in memory and responding to events.

That's my best guess.

Hope it helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号