Click here to Skip to main content
15,891,567 members
Articles / Programming Languages / C#

A C# Track Editor

Rate me:
Please Sign up or sign in to vote.
4.82/5 (18 votes)
2 Nov 2008CPOL2 min read 71.2K   6K   99  
This application is designed to put way points on a track map picture and to set the height of the track points in order to produce a TXT or XML file which resumes the track information.
/*****************************************************************************/
/* Project  : Track Editor                                                   */
/* File     : AboutBox.cs                                                    */
/* Version  : 1                                                              */
/* Language : C#                                                             */
/* Summary  : An about box window                                            */
/* Creation : 12/11/2007                                                     */
/* Autor    : Guillaume CHOUTEAU                                             */
/* History  :                                                                */
/*****************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Track_Editor
{
    public partial class AboutBox : Form
    {
        /*****************************************
        *              Constructor               *
        ******************************************/
        #region Constructor

        public AboutBox()
        {
            InitializeComponent();
        }

        #endregion

        /*****************************************
        *               CallBacks                *
        ******************************************/
        #region CallBacks

        private void btOk_Click(object sender, EventArgs e)
        {
            this.Close();
        }

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

Comments and Discussions