Click here to Skip to main content
15,880,796 members
Articles / Desktop Programming / WPF

GoalBook - A Hybrid Smart Client

Rate me:
Please Sign up or sign in to vote.
4.86/5 (24 votes)
25 Sep 2009CPOL10 min read 79K   834   69  
A WPF hybrid smart client that synchronises your goals with the Toodledo online To-do service.
// <copyright file="HyperlinkDialogView.xaml.cs" company="GoalBook"> 
//    Copyright © 2009 Mark Brownsword. All rights reserved.
//    This source code and supporting files are licensed under The Code Project  
//    Open License (CPOL) as detailed at http://www.codeproject.com/info/cpol10.aspx. 
// </copyright>
namespace GoalBook.Notes.Views
{
    #region Using Statements
    using System;
    using System.ComponentModel;
    using System.Windows;
    using System.Windows.Controls;
    using GoalBook.Infrastructure.Events;
    using GoalBook.Infrastructure.Interfaces;
    #endregion
    
    /// <summary>
    /// Interaction logic for HyperlinkDialogView.xaml
    /// </summary>
    public partial class HyperlinkDialogView : UserControl, IErrorInfoDialogView
    {        
        #region Constants and Enums
        #endregion

        #region Instance and Shared Fields
        /// <summary>
        /// Declaration for ErrorInfoChangedEventHandler.
        /// </summary>
        private ErrorInfoChangedEventHandler errorInfoChangedEventHandler; 
        #endregion

        #region Constructors
        /// <summary>
        /// Initializes a new instance of the HyperlinkDialogView class.
        /// </summary>
        public HyperlinkDialogView()
        {
            InitializeComponent();
        }
        #endregion

        #region Delegates and Events
        /// <summary>
        /// Event indicating that the ErrorInfo property has changed.
        /// </summary>
        public event ErrorInfoChangedEventHandler ErrorInfoChanged
        {
            add { this.errorInfoChangedEventHandler = (ErrorInfoChangedEventHandler)Delegate.Combine(this.errorInfoChangedEventHandler, value); }
            remove { this.errorInfoChangedEventHandler = (ErrorInfoChangedEventHandler)Delegate.Remove(this.errorInfoChangedEventHandler, value); }
        }
        #endregion

        #region Properties
        #endregion

        #region Public and internal Methods
        /// <summary>
        /// Raise ErrorInfo Changed.
        /// </summary>
        /// <param name="info">IDataErrorInfo parameter</param>
        public void RaiseErrorInfoChanged(IDataErrorInfo info)
        {
            this.OnErrorInfoChanged(new ErrorInfoChangedEventArgs(info));
        }
        #endregion

        #region Base Class Overrides
        #endregion

        #region Private and Protected Methods
        /// <summary>
        /// On ErrorInfo Changed.
        /// </summary>
        /// <param name="args">ErrorInfoChangedEventArgs parameter</param>
        private void OnErrorInfoChanged(ErrorInfoChangedEventArgs args)
        {
            if (this.errorInfoChangedEventHandler != null)
            {
                this.errorInfoChangedEventHandler(args);
            }
        }
        #endregion
        
        #region Event Handlers
        /// <summary>
        /// Handle UserControl_Loaded event.
        /// </summary>
        /// <param name="sender">sender parameter</param>
        /// <param name="e">RoutedEventArgs parameter</param>
        private void UserControl_Loaded(object sender, RoutedEventArgs e)
        {
            this.Focus();
            this.textBoxUri.Focus(); 
        }
        #endregion
    }
}

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)
Australia Australia
I've been working as a software developer since 2000 and hold a Bachelor of Business degree from The Open Polytechnic of New Zealand. Computers are for people and I aim to build applications for people that they would want to use.

Comments and Discussions