You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
537 B
28 lines
537 B
14 years ago
|
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;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|