WPF Custom Screen Saver Art

Creating custom wallpaper is easy. But what about custom screen savers? This post will detail how to build a custom saver using Windows Presentation Framework (WPF). The posted code also provides some insight on how to create interesting particle effects using WPF’s animation engine, and how to implement multiple monitor support in .Net.

Download

How To Debug Your Application?



Why use a debugger when I can just do simple outputs to verify? You have to remove message box calls to make your code production worthy. could cause you to delete some code you didn’t mean to which introduces bugs! Debugging lets you stop the program in real time and get data back about your environment with a click of a mouse.

Bruno Terkaly’s blog has 10 lessons on how to debug an application within Visual Studio:

.NET Framework 4.0










Ce superbe poster vous présente une sélection des nouveautés (Types et Namespaces) entre le .NET Framework 3.5 SP1 et le .NET Framework 4.0.

Celui-ci est disponible sous différentes versions :

Create your game









internal void Update(GameTime gameTime)
{
float timeDelta = (float)gameTime.ElapsedGameTime.TotalSeconds;
// Add velocity to the current position.
ship.Position += ship.Velocity;

// Bleed off velocity over time.
ship.Velocity *= 0.95f;

for (int i = 0; i < style="color: rgb(0, 0, 153);"> for (int i = 0; i < style="color: rgb(0, 0, 153);"> if (bulletList[i].isActive)
{
bulletList[i].Update(timeDelta);
}
}
}

XNA Creators Club Online - home


Just Do It

Imagine Cup 2009


Registration is open for IC 2009 at the official site.

Check out the categories for next year, and start preparing for Egypt!

The theme is kind of open (Solve the World's Toughest Problems), you can focus your efforts in whatever you see fit, not restricted to one social problem like

previous years. This may seem like an advantage, but I anticipate a lot of great ideas from all over the world to compete against...

Good luck!

Be the first to rate this post