mirror of https://github.com/ArduPilot/ardupilot
23 lines
563 B
C#
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;
|
|
}
|
|
}
|
|
}
|