5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-03-07 06:03:56 -04:00
ardupilot/Tools/ArdupilotMegaPlanner/Controls/MyUserControl.cs

20 lines
381 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace System.Windows.Forms
{
public class MyUserControl : System.Windows.Forms.UserControl
{
protected override void WndProc(ref Message m)
{
try
{
base.WndProc(ref m);
}
catch { }
}
}
}