Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / WPF

Another Screensaver with WPF

Rate me:
Please Sign up or sign in to vote.
4.87/5 (17 votes)
27 Jan 2012CDDL8 min read 71.9K   4.3K   63  
Lessons learnt from writing a screensaver with WPF
using System;
using System.Windows;
using System.Windows.Media;

namespace RZWScreenSaver{
    static class SizeScaleExtension{
        static public bool IsPortrait(this Size size){
            return size.Height > size.Width;
        }
        static public Size ScaleToArea(this Size size, double newArea){
            var width = Math.Sqrt(newArea*size.Width/size.Height);
            var height = newArea/width;
            return new Size(width,height);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Architect
Thailand Thailand
C/C++ and C# programmer.

Comments and Discussions