diff options
Diffstat (limited to 'script-editor/MyPanel.cs')
-rw-r--r-- | script-editor/MyPanel.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/script-editor/MyPanel.cs b/script-editor/MyPanel.cs new file mode 100644 index 0000000..60d7a7b --- /dev/null +++ b/script-editor/MyPanel.cs @@ -0,0 +1,11 @@ +using System.Windows.Forms; + +namespace CustomControl +{ + public class MyPanel : Panel + { + protected override void OnPaintBackground(PaintEventArgs pevent) + { + } + } +} |