質問編集履歴

1

誤植修正

2021/03/16 11:33

投稿

sarupar
sarupar

スコア2

test CHANGED
File without changes
test CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
 
13
13
  (MainWindow.xaml)
14
+
15
+ '
14
16
 
15
17
  <Window x:Class="WpfApp1.MainWindow"
16
18
 
@@ -62,11 +64,13 @@
62
64
 
63
65
  </Window>
64
66
 
67
+ '
68
+
65
69
 
66
70
 
67
71
  (MainWindowViewModel.cs)
68
72
 
69
- using System;
73
+ 'using System;
70
74
 
71
75
  using System.Collections.ObjectModel;
72
76
 
@@ -76,7 +80,7 @@
76
80
 
77
81
  {
78
82
 
79
- class MainWindowViewModel
83
+ class MainWindowViewModel:INotifyPropertyChanged
80
84
 
81
85
  {
82
86
 
@@ -136,9 +140,13 @@
136
140
 
137
141
  }
138
142
 
143
+ '
144
+
139
145
 
140
146
 
141
147
  (MainWindow.xaml.cs)
148
+
149
+ '
142
150
 
143
151
  using System;
144
152
 
@@ -170,4 +178,6 @@
170
178
 
171
179
  }
172
180
 
181
+ '
182
+
173
183
  ========