mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 06:58:27 -04:00
b04d76049c
add experimental antenna tracker find add new apparam eeprom reader add ground alt display to hud mod stats modify guided mode alt selection. test flight planner tab on flight data tab move some functions to the right click menu add xplanes data in/out setup to be automatic. add better mission upload handeling.
80 lines
3.1 KiB
C#
80 lines
3.1 KiB
C#
namespace ArdupilotMega.GCSViews
|
|
{
|
|
partial class Help
|
|
{
|
|
/// <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 Component 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(Help));
|
|
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
this.CHK_showconsole = new System.Windows.Forms.CheckBox();
|
|
this.BUT_updatecheck = new ArdupilotMega.Controls.MyButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// richTextBox1
|
|
//
|
|
resources.ApplyResources(this.richTextBox1, "richTextBox1");
|
|
this.richTextBox1.Cursor = System.Windows.Forms.Cursors.Default;
|
|
this.richTextBox1.DetectUrls = false;
|
|
this.richTextBox1.Name = "richTextBox1";
|
|
//
|
|
// CHK_showconsole
|
|
//
|
|
resources.ApplyResources(this.CHK_showconsole, "CHK_showconsole");
|
|
this.CHK_showconsole.Name = "CHK_showconsole";
|
|
this.CHK_showconsole.UseVisualStyleBackColor = true;
|
|
this.CHK_showconsole.CheckedChanged += new System.EventHandler(this.CHK_showconsole_CheckedChanged);
|
|
//
|
|
// BUT_updatecheck
|
|
//
|
|
resources.ApplyResources(this.BUT_updatecheck, "BUT_updatecheck");
|
|
this.BUT_updatecheck.Name = "BUT_updatecheck";
|
|
this.BUT_updatecheck.UseVisualStyleBackColor = true;
|
|
this.BUT_updatecheck.Click += new System.EventHandler(this.BUT_updatecheck_Click);
|
|
//
|
|
// Help
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.CHK_showconsole);
|
|
this.Controls.Add(this.BUT_updatecheck);
|
|
this.Controls.Add(this.richTextBox1);
|
|
this.Name = "Help";
|
|
this.Load += new System.EventHandler(this.Help_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox richTextBox1;
|
|
private ArdupilotMega.Controls.MyButton BUT_updatecheck;
|
|
private System.Windows.Forms.CheckBox CHK_showconsole;
|
|
|
|
}
|
|
}
|