2009-03-25から1日間の記事一覧

MVVM パターンで迷った

C#

例えばこんな ViewModel があるとします。 public class CustomerViewModel : ViewModelBase { private Customer _model; private Command _loadCommand; public CustomerViewModel() { _model = new Customer(); _loadCommand = new Command("Load"); _load…