2012-02-20 07:30:47 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace System.Windows.Forms
|
|
|
|
|
{
|
2012-04-24 10:49:27 -03:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is a mono fix, windows handles this error, mono crashs
|
|
|
|
|
/// </summary>
|
2012-02-20 07:30:47 -04:00
|
|
|
|
public class MyUserControl : System.Windows.Forms.UserControl
|
|
|
|
|
{
|
|
|
|
|
protected override void WndProc(ref Message m)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
base.WndProc(ref m);
|
|
|
|
|
}
|
|
|
|
|
catch { }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|