Click here to Skip to main content
15,893,588 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 161.1K   3.1K   139  
A password safe with a touch screen UI introducing Fluid Controls.
using System;

using System.Collections.Generic;
using System.Text;
using Fluid.Controls;
using System.Drawing;
using PasswordSafe.Classes;
using PasswordSafe.Templates;
using PasswordSafe.Xml;
using Fluid.Classes;

namespace PasswordSafe
{
    public class CategoriesListBox:ListBoxBase
    {
        protected override void InitControl()
        {
            base.InitControl();
            //ShowHeader = false;
            ItemHeight = 32;

            template = new CategoryTemplate();
            Template = template;

            categories = ListBuilder.Instance.ListBoxCategories;
            categories.ListChanged += new System.ComponentModel.ListChangedEventHandler(categories_ListChanged);
            this.EnableInsertDeleteAnimation = true;

            DataSource = categories;
        }

        void categories_ListChanged(object sender, System.ComponentModel.ListChangedEventArgs e)
        {
       //     DataSource = categories;
        }

        private CategoryTemplate template;

        private NotifyList categories;

        public NotifyList Categories { get { return categories; } }

        protected override void OnSelectedIndexChanged(int oldValue, int newValue)
        {
            template.DeleteIndex = -1;
            base.OnSelectedIndexChanged(oldValue, newValue);
        }

        public CategoryTemplate CategoryTemplate { get { return Template as CategoryTemplate; } }


        protected override void OnItemClick(int index)
        {
            base.OnItemClick(index);
            NavigateForward();
        }

        public override bool NavigateForward()
        {
            if (!editMode)
            {
                PasswordCategory category = categories[SelectedItemIndex] as PasswordCategory;

                SelectedCategory = category;
                if (category != null)
                {
                    if (CategorySelected != null) CategorySelected(this, EventArgs.Empty);
                }
            }
            return true;
        }

        public PasswordCategory SelectedCategory { get; private set; }

        public event EventHandler CategorySelected;

        private bool editMode;
        public bool EditMode
        {
            get { return editMode; }
            set
            {
                if (editMode != value)
                {
                    editMode = value;
                    OnEditModeChanged();
                }
            }
        }


        private void OnEditModeChanged()
        {
            bool editMode = EditMode;
            Pages.editCategoryBtn.Text = editMode ? "Done" : "Edit";
            template.EditMode = true;
            Animation.LogAnimation(editMode ? 0 : 100, editMode ? 100 : 0, 150, anim_Scene);
            template.EditMode = editMode;
        }

        void anim_Scene(object sender, AnimationEventArgs e)
        {
            template.ButtonStretch = e.Value;
            Invalidate();
        }


    }
}

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