質問編集履歴

1

追記です

2021/09/23 12:56

投稿

yal
yal

スコア41

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,28 @@
14
14
 
15
15
 
16
16
 
17
+ 追記です。
18
+
19
+ fanaさんのmainフォームで関数を書いて、subフォームでボタンが押されるイベントと紐付けた関数がmainの関数を呼び出して処理するという方法でできました。
20
+
21
+
22
+
23
+ 皆様ありがとうございます。
24
+
25
+ 一応できたのですが、
26
+
27
+ しかし、お二人のsubフォームのボタンのModifiersをpublicにして
28
+
29
+ mainフォームに書いてある関数にクリックイベントを紐付けるっていうのができないのですが、
30
+
31
+ これはインスタンスに失敗しているのでしょうか。
32
+
33
+ プロパティのイベントにmainフォームに書いた関数が現れません...
34
+
35
+ コードですべて紐付けているのでしょうか...?
36
+
37
+
38
+
17
39
  ### 発生している問題・エラーメッセージ
18
40
 
19
41
 
@@ -32,7 +54,137 @@
32
54
 
33
55
  ```C#
34
56
 
35
-
57
+ using System;
58
+
59
+ using System.Collections.Generic;
60
+
61
+ using System.ComponentModel;
62
+
63
+ using System.Data;
64
+
65
+ using System.Drawing;
66
+
67
+ using System.Linq;
68
+
69
+ using System.Text;
70
+
71
+ using System.Threading.Tasks;
72
+
73
+ using System.Windows.Forms;
74
+
75
+ using System.Data.SQLite;
76
+
77
+ using System.Diagnostics;
78
+
79
+ using System.Text.Json;
80
+
81
+
82
+
83
+ namespace cs_launcher_1
84
+
85
+ {
86
+
87
+ public partial class murrelet : Form
88
+
89
+ {
90
+
91
+ public static DataTable dataTable = new DataTable();
92
+
93
+ subF subF = new subF();
94
+
95
+
96
+
97
+ public murrelet()
98
+
99
+ {
100
+
101
+ InitializeComponent();
102
+
103
+
104
+
105
+ }
106
+
107
+
108
+
109
+ private void murrelet_Load(object sender, EventArgs e)
110
+
111
+ {
112
+
113
+ this.Text = "murrelet";
114
+
115
+ using (SQLiteConnection con = new SQLiteConnection("Data Source = test.db"))
116
+
117
+ using (SQLiteDataAdapter adapter = new SQLiteDataAdapter("SELECT * FROM food", con))
118
+
119
+ {
120
+
121
+ adapter.Fill(dataTable);
122
+
123
+ dataGridView1.RowHeadersVisible = false;
124
+
125
+ dataGridView1.Columns[0].Visible = false;
126
+
127
+ dataGridView1.Columns[6].Visible = false;
128
+
129
+ con.Close();
130
+
131
+ }
132
+
133
+ }
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+ public void esidButton_click(object sender,EventArgs e)
142
+
143
+ {
144
+
145
+ this.subF.esid = this.esidAdd.textBox1.Text;
146
+
147
+ this.toolStripStatusLabel1.Text = this.subF.id;
148
+
149
+
150
+
151
+ this.subF.Visible = false;
152
+
153
+ }
154
+
155
+
156
+
157
+ public void button1_Click(object sender,EventArgs e)
158
+
159
+ {
160
+
161
+ esidAdd.button1.Click += mainF;
162
+
163
+ }
164
+
165
+
166
+
167
+ public void mainF(object sender,EventArgs e)
168
+
169
+ {
170
+
171
+ this.toolStripStatusLabel1.Text = "検知成功";
172
+
173
+ }
174
+
175
+
176
+
177
+ public static void TheProcess()
178
+
179
+ {
180
+
181
+ Console.WriteLine("成功");
182
+
183
+ }
184
+
185
+ }
186
+
187
+ }
36
188
 
37
189
  ```
38
190