這裏我正在處理mvvm .i想要在數據網格中通知uodate,如果文本框中發生任何更改,那麼該代碼是什麼?IN mvvm如何通知數據網格中的商店數據?
public void Save()
{if (IsNew)
_accountCategoryDataSource.Add(_accountCategory);
在數據庫
及以下在數據網格加載數據代碼添加數據上述代碼用於觀看
private void LoadAllAccounts()
{
_allAccounts =
(from account in _accountDataSource.GetAll() as List<Account>
select new AccountViewModel(account, _accountDataSource)).ToList();
Accounts = new ObservableCollection<AccountViewModel>(_allAccounts);
if (Accounts.Count > 0)
SelectedAccount = Accounts[0];
}`
但我不能有代碼用於示出在數據網格更新它是如何做了什麼?
是如何作爲的相關數據網格/賬戶和文本框,什麼是在文本框 – NSGaga 2012-04-19 14:10:21
@NSGaga:這裏網格顯示賬戶信息,並利用文本框,我們可以給值如account_name,account_owner等,用於在數據庫中存儲/更新。 – pratikjgandhi 2012-04-19 14:13:54