2016-07-21 6 views

答えて

5

通常のC#イベントを作成するだけではどうですか。

ViewModel.Something += (s, e) => Console.WriteLine("Something!"); 
:あなたの閲覧/のViewController /ページで

public event EventHandler Something; 

:あなたのViewModelで

関連する問題