ardupilot/Tools/ArdupilotMegaPlanner/Splash.cs
Michael Oborne 747e1187e7 APM Planner 1.0.97
add custom WMS map source
fix alt save issue for feet
update SIL images
2011-11-25 08:07:14 +08:00

23 lines
563 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ArdupilotMega
{
public partial class Splash : Form
{
public Splash()
{
InitializeComponent();
string strVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
TXT_version.Text = "Version: " + Application.ProductVersion;// +" Build " + strVersion;
}
}
}