mirror of https://github.com/ArduPilot/ardupilot
28 lines
537 B
C#
28 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ArdupilotMega.GCSViews
|
|
{
|
|
public partial class test : UserControl
|
|
{
|
|
public test()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void test_Load(object sender, EventArgs e)
|
|
{
|
|
panel3.Expand = false;
|
|
panel1.Expand = false;
|
|
}
|
|
|
|
}
|
|
}
|
|
|