質問編集履歴
1
見づらいとのご指摘通り、修正させていただきました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,17 +20,23 @@
|
|
20
20
|
|
21
21
|
### 該当のソースコード
|
22
22
|
|
23
|
+
```
|
24
|
+
|
23
25
|
panel.Control.Add(new CostomControl(){Location = new Point(30, 30)});
|
24
26
|
|
25
27
|
panel.Control.Add(new CostomControl(){Location = new Point(60, 60)});
|
26
28
|
|
27
29
|
panel.Control.Add(new CostomControl(){Location = new Point(90, 90)});
|
28
30
|
|
31
|
+
```
|
32
|
+
|
29
33
|
という感じの状態。
|
30
34
|
|
31
|
-
|
35
|
+
```
|
32
36
|
|
33
37
|
public class CostomControl : Panel
|
38
|
+
|
39
|
+
```
|
34
40
|
|
35
41
|
背景Bitmapはbackground[]に格納
|
36
42
|
|
@@ -41,6 +47,8 @@
|
|
41
47
|
|
42
48
|
|
43
49
|
影描画部分 (下側/右下/右側/パネル)
|
50
|
+
|
51
|
+
```
|
44
52
|
|
45
53
|
private void CostomControl_Paint(object sender, PaintEventArgs e)
|
46
54
|
|
@@ -82,7 +90,7 @@
|
|
82
90
|
|
83
91
|
}
|
84
92
|
|
85
|
-
|
93
|
+
```
|
86
94
|
|
87
95
|
### 試したこと
|
88
96
|
|