回答編集履歴
2
改行
answer
CHANGED
|
@@ -227,6 +227,7 @@
|
|
|
227
227
|
public partial class Section_0100_00 : ContentPage
|
|
228
228
|
{
|
|
229
229
|
public Section_0100_00() => InitializeComponent();
|
|
230
|
+
|
|
230
231
|
private async void OnSection0100_Clicked(object? sender, EventArgs e)
|
|
231
232
|
// コンストラクタ引数で差分(縄文時代、縄文01_社会)を渡す
|
|
232
233
|
=> await Navigation.PushAsync(new Section_0100_X00("縄文時代", "縄文01_社会"));
|
1
不要async
answer
CHANGED
|
@@ -207,17 +207,16 @@
|
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
private
|
|
210
|
+
private void OnSection_NextButton(object? sender, EventArgs e)
|
|
211
211
|
{
|
|
212
212
|
m_i現在の問題の番号++;
|
|
213
213
|
問題を出す();
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
private
|
|
216
|
+
private void OnSection_Select1(object? sender, EventArgs e) => 答え合わせ(1);
|
|
217
|
-
private
|
|
217
|
+
private void OnSection_Select2(object? sender, EventArgs e) => 答え合わせ(2);
|
|
218
|
-
private
|
|
218
|
+
private void OnSection_Select3(object? sender, EventArgs e) => 答え合わせ(3);
|
|
219
|
-
private
|
|
219
|
+
private void OnSection_Select4(object? sender, EventArgs e) => 答え合わせ(4);
|
|
220
|
-
|
|
221
220
|
}
|
|
222
221
|
```
|
|
223
222
|
```cs:Section_0100_00.xaml.cs
|