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