Click here to Skip to main content
15,895,667 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 72.2K   4.3K   63  
Lessons learnt from writing a screensaver with WPF
using System.Windows;
using System.Windows.Media;

namespace RZWScreenSaver {
    /// <summary>
    /// Interaction logic for DeleteDialog.xaml
    /// </summary>
    public partial class DeleteDialog{
        public DeleteDialog() {
            InitializeComponent();
        }
        public DeleteDialog(ImageSource picture, string pictureName) : this() {
            previewPicture.Source = picture;
            this.pictureName.Text = pictureName;
        }
        public bool MoveFileNeeded{ get; private set; }
        void onOk(object sender, RoutedEventArgs e){
            DialogResult = true;
        }
        void onMoveFile(object sender, RoutedEventArgs e){
            MoveFileNeeded = true;
            DialogResult = true;
        }
    }
}

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