回答編集履歴

1

データの抜けあり

2021/02/03 06:20

投稿

退会済みユーザー
test CHANGED
@@ -15,6 +15,34 @@
15
15
  {
16
16
 
17
17
  InitializeComponent();
18
+
19
+ }
20
+
21
+ private static FrmUketori _instance;
22
+
23
+ public static FrmUketori Instance
24
+
25
+ {
26
+
27
+ get
28
+
29
+ {
30
+
31
+ //_instanceがnullまたは破棄されているときは、
32
+
33
+ //新しくインスタンスを作成する
34
+
35
+ if (_instance == null || _instance.IsDisposed)
36
+
37
+ {
38
+
39
+ _instance = new FrmUketori();
40
+
41
+ }
42
+
43
+ return _instance;
44
+
45
+ }
18
46
 
19
47
  }
20
48