mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
8f084ae8ee
ammend serial dispose on usb devices detach add item currentstate item description and units ammend battery screen for 3dr power module add trackbar zoom to flight data add unit desccription ammend PREFLIGHT_REBOOT_SHUTDOWN timeout
89 lines
3.9 KiB
C#
89 lines
3.9 KiB
C#
namespace ArdupilotMega
|
|
{
|
|
partial class Splash
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Splash));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.TXT_version = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.BackColor = System.Drawing.Color.Transparent;
|
|
this.label1.Font = new System.Drawing.Font("Century Gothic", 8F, System.Drawing.FontStyle.Bold);
|
|
this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
this.label1.Location = new System.Drawing.Point(447, 132);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(111, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "by Michael Oborne";
|
|
this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
|
//
|
|
// TXT_version
|
|
//
|
|
this.TXT_version.BackColor = System.Drawing.Color.Transparent;
|
|
this.TXT_version.Font = new System.Drawing.Font("Century Gothic", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.TXT_version.Location = new System.Drawing.Point(403, 107);
|
|
this.TXT_version.Name = "TXT_version";
|
|
this.TXT_version.Size = new System.Drawing.Size(155, 25);
|
|
this.TXT_version.TabIndex = 1;
|
|
this.TXT_version.Text = "Version: ";
|
|
this.TXT_version.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// Splash
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
|
|
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
|
this.ClientSize = new System.Drawing.Size(594, 347);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.TXT_version);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(600, 375);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(600, 375);
|
|
this.Name = "Splash";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Mission Planner";
|
|
this.TopMost = true;
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label TXT_version;
|
|
}
|
|
} |