Click here to Skip to main content
15,885,077 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 159.4K   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.Drawing;

namespace Fluid.Controls
{
    public class FluidTemplate : ControlContainer, ILayoutPanel
    {
        public FluidTemplate()
            : base()
        {
        }

        public FluidTemplate(int x, int y, int width, int height)
            : base(x, y, width, height)
        {
        }

        protected override void Initialize()
        {
            base.Initialize();
            BackColor = Color.Empty;
        }

        /// <summary>
        /// Gets or sets the index, for instance the item index if this is a template for a listbox.
        /// </summary>
        public int ItemIndex { get; set; }

        private object item;

        /// <summary>
        /// Gets or sets the item for the template.
        /// </summary>
        public object Item
        {
            get { return item; }
            set
            {
                if (item != value)
                {
                    item = value;
                    OnBindValue(value);
                }
                OnItemUpdate(value);
            }
        }

        protected virtual void OnItemUpdate(object value)
        {
        }

        /// <summary>
        /// Occurs when the template must be data bound.
        /// </summary>
        protected virtual void OnBindValue(object value)
        {
            if (BindValue != null) BindValue(this, EventArgs.Empty);
        }

        /// <summary>
        /// Occurs when the template must be data bound.
        /// </summary>
        public event EventHandler BindValue;

        public override void RaiseCommand(CommandEventArgs e)
        {
            e.Index = ItemIndex;
            if (e.Data == null) e.Data = Item;
            base.RaiseCommand(e);
        }

        /// <summary>
        /// Binds the data for the template. Before accessing data outside a OnBind event, you must call this method, otherwise ItemIndex and Item might
        /// return false data since the template is reused and bound on occasion.
        /// </summary>
        public void Bind()
        {
            ITemplateHost host = Container as ITemplateHost;
            if (host != null) host.Bind(this);
        }

        /// <summary>
        /// Binds this template with a specified item.
        /// </summary>
        /// <param name="itemIndex">The index of the item for which to bind.</param>
        public void Bind(int itemIndex)
        {
            ITemplateHost host = Container as ITemplateHost;
            if (host != null) host.Bind(this, itemIndex);
        }

        public FluidControlCollection Controls
        {
            get { return controls; }
        }

        //     public override bool Selectable { get { return 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 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