Click here to Skip to main content
15,881,967 members
Articles / Mobile Apps

Windows Mobile Password Safe

Rate me:
Please Sign up or sign in to vote.
4.87/5 (58 votes)
12 Jan 2009CPOL16 min read 158.9K   3.1K   139  
A password safe with a touch screen UI introducing Fluid Controls.
using System;

using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Drawing;
using System.Windows.Forms;
using System.Drawing.Imaging;

namespace Fluid.Native
{
    public static class NativeMethods
    {
        [DllImport("coredll.dll")]
        private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, int lParam);

        private const int WM_PRINT = 0x317;
        private const int PRF_NON_CLIENT = 0x02;
        private const int PRF_CLIENT = 0x04;
        private const int PRF_ERASEBKGND = 0x08;
        private const int PRF_CHILDREN = 0x10;


        public static void DrawControlToBitmap(Control control, Bitmap bitmap, Rectangle targetBounds)
        {
            if (bitmap == null)
            {
                throw new ArgumentNullException("bitmap");
            }
            if (((targetBounds.Width <= 0) || (targetBounds.Height <= 0)) || ((targetBounds.X < 0) || (targetBounds.Y < 0)))
            {
                throw new ArgumentException("targetBounds");
            }


            int width = Math.Min(control.Width, targetBounds.Width);
            int height = Math.Min(control.Height, targetBounds.Height);
            using (Bitmap image = new Bitmap(width, height, PixelFormat.Format32bppRgb))
            {
                using (Graphics graphics = Graphics.FromImage(image))
                {
                    IntPtr hdc = graphics.GetHdc();
                    SendMessage(control.Handle, 0x317, hdc, PRF_CLIENT | PRF_CHILDREN | PRF_ERASEBKGND);
                    graphics.ReleaseHdc(hdc);
                }
                using (Graphics graphics2 = Graphics.FromImage(bitmap))
                {
                    ImageAttributes ia = new ImageAttributes();
                    graphics2.DrawImage(image, targetBounds, 0, 0, width, height, GraphicsUnit.Pixel, ia);
                }
            }
        }

    }
}

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 Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
MCPD
Enterprise Application Developer 3.5
Windows Developer 3.5
.ASP.NET Developer 3.5
.NET 2.0 Windows Developer
.NET 2.0 Web Developer
.NET 2.0 Enterprise Application Developer


MCTS
.NET 3.5 Windows Forms Applications
.NET 3.5 ASP.NET Applications
.NET 3.5, ADO.NET Application Development
.NET 3.5 WCF
.NET 3.5 WPF
.NET 3.5 WF
Microsoft SQL Server 2008, Database Development
.NET 2.0 Windows Applications
.NET 2.0 Web Applications
.NET 2.0 Distributed Applications
SQL Server 2005
Sharepoint Services 3.0 Application Development
Windows Vista Client Configuration

Comments and Discussions