Click here to Skip to main content
15,898,134 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.3K   4.3K   63  
Lessons learnt from writing a screensaver with WPF
<Window x:Class="RZWScreenSaver.DeleteDialog"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Picture Deletion" ShowInTaskbar="False" Topmost="True" ResizeMode="CanResizeWithGrip" MinHeight="280" MinWidth="240">
    <DockPanel>
        <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" DockPanel.Dock="Bottom">
            <Button Width="96" Margin="3,5" IsDefault="True" Click="onOk">O_k</Button>
            <Button Width="96" Margin="3,5" TabIndex="0" IsCancel="True">_Cancel</Button>
            <Button Width="96" Margin="3,5" Click="onMoveFile">_Move To...</Button>
        </StackPanel>
        <DockPanel Background="White">
            <TextBlock FontSize="18" Foreground="Blue" DockPanel.Dock="Top" TextWrapping="WrapWithOverflow">Are you sure to DELETE this picture?</TextBlock>
            <TextBlock Name="pictureName" HorizontalAlignment="Center" DockPanel.Dock="Bottom">file</TextBlock>
            <Image Name="previewPicture" HorizontalAlignment="Center" Margin="5" Stretch="Uniform" Source="/RZWScreenSaver;Component/images/Clipping Text.png" />
        </DockPanel>
    </DockPanel>
</Window>

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