質問編集履歴
2
追記②
test
CHANGED
File without changes
|
test
CHANGED
@@ -95,3 +95,11 @@
|
|
95
95
|
}
|
96
96
|
|
97
97
|
```
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
### 追記②
|
102
|
+
|
103
|
+
選択中のフォントサイズには、チェックマークが付く仕様にしたいと思っています。
|
104
|
+
|
105
|
+

|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,3 +47,51 @@
|
|
47
47
|
Visual Studio 2019
|
48
48
|
|
49
49
|
Visual C#
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
### 追記
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
```C#
|
58
|
+
|
59
|
+
using System;
|
60
|
+
|
61
|
+
using System.Collections.Generic;
|
62
|
+
|
63
|
+
using System.Linq;
|
64
|
+
|
65
|
+
using System.Text;
|
66
|
+
|
67
|
+
using System.Threading.Tasks;
|
68
|
+
|
69
|
+
using System.Windows.Forms.Design;
|
70
|
+
|
71
|
+
using System.Windows.Forms;
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
namespace SampleWindowsFormsApp1
|
76
|
+
|
77
|
+
{
|
78
|
+
|
79
|
+
[System.ComponentModel.Designer(typeof(System.Windows.Forms.Design.ControlDesigner))]
|
80
|
+
|
81
|
+
class MyMenuStrip : MenuStrip
|
82
|
+
|
83
|
+
{
|
84
|
+
|
85
|
+
public MyMenuStrip()
|
86
|
+
|
87
|
+
{
|
88
|
+
|
89
|
+
InitializeComponent();
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
```
|