summaryrefslogtreecommitdiff
path: root/script-editor/MyPanel.cs
diff options
context:
space:
mode:
authorJes <jes>2010-01-06 23:39:02 +0100
committerJes <jes>2010-01-06 23:39:02 +0100
commit49b3d926ea33f486468f0bc855585968eacca124 (patch)
treed4df4025819927a586714b3d077b7395c0c66e11 /script-editor/MyPanel.cs
parent6b898f4d57431cacd6cec6e9425c441cf80d302f (diff)
Ajout des sources de l'éditeur de script
Diffstat (limited to 'script-editor/MyPanel.cs')
-rw-r--r--script-editor/MyPanel.cs11
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)
+ {
+ }
+ }
+}