summaryrefslogtreecommitdiff
path: root/script-editor/MyPanel.cs
blob: 60d7a7b13f931c3b868ebf9e142e6ddb8a8c8bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Windows.Forms;

namespace CustomControl
{
    public class MyPanel : Panel
    {
        protected override void OnPaintBackground(PaintEventArgs pevent)
        {
        }
    }
}