ardupilot/Tools/ArdupilotMegaPlanner/Controls/ToolStripConnectionControl.cs

17 lines
465 B
C#
Raw Normal View History

using System.Windows.Forms;
namespace ArdupilotMega.Controls
{
public class ToolStripConnectionControl : ToolStripControlHost
{
// Call the base constructor passing in a MonthCalendar instance.
public ToolStripConnectionControl()
: base(new ConnectionControl())
{
}
public ConnectionControl ConnectionControl
{
get { return Control as ConnectionControl; }
}
}
}