views:

216

answers:

2

I am writing a windows application with C# in visual studio .net 2005.

In the form , there are some control with transparent Background; the form opens maximised and with full screen background.

The application runs very slow with high CPU usage.

Why is this?

+3  A: 

Thats because the GDI+ transparency implemented in .NET 2 is not ideally implemented, as Bob Powell explains.

Martin
Thanks for Your Help
Modir
+2  A: 

Hello
Solved My Problem.
My Solve:
Set Properties in Form:

BackgroundImageLayout = None
DoubleBuffred = True
Modir