質問編集履歴
2
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
理由が全く分かりません。
|
18
18
|
|
19
|
-
```
|
19
|
+
```C#
|
20
20
|
|
21
21
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
22
22
|
|
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
System.StackOverflowExceptionが発生しました。
|
34
34
|
|
35
|
-
```
|
35
|
+
```C#
|
36
36
|
|
37
37
|
this.panel1.Controls.Add(this.label2);
|
38
38
|
|
@@ -51,3 +51,43 @@
|
|
51
51
|
|
52
52
|
|
53
53
|
Visual Studioでアプリ開発を始めて2か月程度の初心者です。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
追記
|
58
|
+
|
59
|
+
呼び出し履歴をみると、InitializeComponent()は
|
60
|
+
|
61
|
+
一度しか呼ばれていませんが、
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
~Form1.Form1()行20
|
66
|
+
|
67
|
+
~ReadText.ReadText()行235
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
が何度も交互に表示されています。
|
72
|
+
|
73
|
+

|
74
|
+
|
75
|
+
~Form1.Form1()行20は
|
76
|
+
|
77
|
+
```C#
|
78
|
+
|
79
|
+
ReadText retex = new ReadText();
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
~ReadText.ReadText()行235は
|
84
|
+
|
85
|
+
```C#
|
86
|
+
|
87
|
+
Form1 form1 = new Form1();
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
です。
|
92
|
+
|
93
|
+
ここに問題があるのでしょうか。
|
1
誤字の修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
nitializeComponent()メソッドで例外が発生するようになった(WindowsFormアプリ)
|
1
|
+
InitializeComponent()メソッドで例外が発生するようになった(WindowsFormアプリ)
|
test
CHANGED
File without changes
|