質問編集履歴
3
ViewModelのコードの誤りを一部修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -42,7 +42,8 @@
|
|
42
42
|
|
43
43
|
ViewModel:
|
44
44
|
```C#
|
45
|
+
class ViewModel:INotifyPropertyChanged {
|
45
|
-
|
46
|
+
public event PropertyChangedEventHandler PropertyChanged;
|
46
47
|
|
47
48
|
private ICommand Command {
|
48
49
|
get;
|
2
タグがCになっていたので、C#に変更
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
1
タイトルの日本語がおかしかったので修正
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
WPFによるコマンドデータバインディング
|
1
|
+
WPFによるコマンドデータバインディングの書き方について
|
body
CHANGED
File without changes
|