Click here to Skip to main content
15,884,050 members
Articles / Programming Languages / XML

Bernie’s Trackviewer

Rate me:
Please Sign up or sign in to vote.
4.84/5 (27 votes)
12 Jun 2016CPOL7 min read 61.5K   4.2K   70  
View and edit your GPS track records on a nice GUI with online maps and aerial views.
using System;
using System.Drawing;
using System.Windows.Forms;

namespace Utilities
{
    public class FormEx: Form
    {
        public FormEx()
            : base()
        {
            base.BackColor = Color.Ivory;
            base.Font = Defaults.Font;
        }

        protected bool _AllowAppearanceChanges;
        public bool AllowAppearanceChanges
        {
            get { return _AllowAppearanceChanges; }
            set { _AllowAppearanceChanges = value; }
        }

        public override Color BackColor
        {
            get { return base.BackColor; }
            set
            {
                if (_AllowAppearanceChanges)
                    base.BackColor = value;
            }
        }

        public override Font Font
        {
            get { return base.Font; }
            set
            {
                if (_AllowAppearanceChanges)
                    base.Font = value;
            }
        }
    }
}

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
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions